about summary refs log tree commit diff
path: root/src/screens/Settings/AboutSettings.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2025-03-07 02:46:09 +0900
committerGitHub <noreply@github.com>2025-03-06 11:46:09 -0600
commita7db0bac6fa42a47f05b9ef5fabc05656a347f08 (patch)
treeb44c29f5fb428f6aa353984fc5c930547ec85e16 /src/screens/Settings/AboutSettings.tsx
parent29eef6188ae4c00006ae759e1b3815b8bd091a87 (diff)
downloadvoidsky-a7db0bac6fa42a47f05b9ef5fabc05656a347f08.tar.zst
Add context for toast messages (#7902)
* add context for toast

* add
Diffstat (limited to 'src/screens/Settings/AboutSettings.tsx')
-rw-r--r--src/screens/Settings/AboutSettings.tsx14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx
index afae1096c..e174c09e5 100644
--- a/src/screens/Settings/AboutSettings.tsx
+++ b/src/screens/Settings/AboutSettings.tsx
@@ -77,8 +77,18 @@ export function AboutSettingsScreen({}: Props) {
               setDevModeEnabled(newDevModeEnabled)
               Toast.show(
                 newDevModeEnabled
-                  ? _(msg`Developer mode enabled`)
-                  : _(msg`Developer mode disabled`),
+                  ? _(
+                      msg({
+                        message: 'Developer mode enabled',
+                        context: 'toast',
+                      }),
+                    )
+                  : _(
+                      msg({
+                        message: 'Developer mode disabled',
+                        context: 'toast',
+                      }),
+                    ),
               )
             }}
             onPress={() => {