From 8fee108a78c8125206f79b73d534bf534775c213 Mon Sep 17 00:00:00 2001 From: "oura.a" Date: Tue, 19 Sep 2023 10:32:33 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20422:=20=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E6=99=82=E3=81=AE=E3=82=B9=E3=83=8A=E3=83=83=E3=82=AF=E3=83=90?= =?UTF-8?q?=E3=83=BC=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2685: 成功時のスナックバー追加](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2685) 情報更新成功時の成功スナックバー実装が漏れていたため、追加しました。 ## レビューポイント なし ## UIの変更 なし ## 動作確認状況 ローカルで確認 ## 補足 なし --- dictation_client/src/features/account/operations.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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);