Skip to content

Commit 7d0eed0

Browse files
committed
Fix HTTP verb on app version to align with API
1 parent 1727979 commit 7d0eed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-app/src/common/ApiService.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const ApiService = {
6767

6868
async getLatestAppVersion() {
6969
try {
70-
const {data} = await axiosInstance.post(`app/latest`, {});
70+
const {data} = await axiosInstance.get(`app/latest`);
7171

7272
return data;
7373
} catch {

0 commit comments

Comments
 (0)