Skip to content

Commit

Permalink
Fix HTTP verb on app version to align with API
Browse files Browse the repository at this point in the history
  • Loading branch information
larsbaunwall committed Apr 20, 2020
1 parent 1727979 commit 7d0eed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client-app/src/common/ApiService.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const ApiService = {

async getLatestAppVersion() {
try {
const {data} = await axiosInstance.post(`app/latest`, {});
const {data} = await axiosInstance.get(`app/latest`);

return data;
} catch {
Expand Down

0 comments on commit 7d0eed0

Please sign in to comment.