Skip to content

Commit c2e0147

Browse files
committed
Fix javascript error
1 parent 4cb1c02 commit c2e0147

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/store/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ export const actions = {
525525
.then((response: AxiosResponse<ResponsesMessagesResponse>) => {
526526
resolve(response.data.data)
527527
})
528-
.catch(async (error: AxiosError) => {
528+
.catch((error: AxiosError) => {
529529
reject(error)
530530
})
531531
})

0 commit comments

Comments
 (0)