diff --git a/dictation_client/src/features/account/operations.ts b/dictation_client/src/features/account/operations.ts index b1d4164..93b092b 100644 --- a/dictation_client/src/features/account/operations.ts +++ b/dictation_client/src/features/account/operations.ts @@ -75,6 +75,12 @@ export const updateAccountInfoAsync = createAsyncThunk< await accountApi.me(args, { headers: { authorization: `Bearer ${accessToken}` }, }); + thunkApi.dispatch( + openSnackbar({ + level: "info", + message: getTranslationID("common.message.success"), + }) + ); return {}; } catch (e) { const error = createErrorObject(e);