diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2025-03-07 02:46:09 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 11:46:09 -0600 |
commit | a7db0bac6fa42a47f05b9ef5fabc05656a347f08 (patch) | |
tree | b44c29f5fb428f6aa353984fc5c930547ec85e16 /src/components/FeedCard.tsx | |
parent | 29eef6188ae4c00006ae759e1b3815b8bd091a87 (diff) | |
download | voidsky-a7db0bac6fa42a47f05b9ef5fabc05656a347f08.tar.zst |
Add context for toast messages (#7902)
* add context for toast * add
Diffstat (limited to 'src/components/FeedCard.tsx')
-rw-r--r-- | src/components/FeedCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index 1c1895418..f20e517d4 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -269,7 +269,7 @@ function SaveButtonInner({ }, ]) } - Toast.show(_(msg`Feeds updated!`)) + Toast.show(_(msg({message: 'Feeds updated!', context: 'toast'}))) } catch (err: any) { logger.error(err, {message: `FeedCard: failed to update feeds`, pin}) Toast.show(_(msg`Failed to update feeds`), 'xmark') |