about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-02-24 18:29:12 +0900
committerMinseo Lee <itoupluk427@gmail.com>2024-02-24 18:29:12 +0900
commit860b5307adf29e7f47e2ef6a84af1932929223b1 (patch)
tree7d47fc4dfddb8d4e5a2dcae5bd4b90992339bd58
parent5809dd06245f8a2da82f8ff74540e72b660c8ec5 (diff)
downloadvoidsky-860b5307adf29e7f47e2ef6a84af1932929223b1.tar.zst
Update NotFound.tsx
-rw-r--r--src/view/screens/NotFound.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/screens/NotFound.tsx b/src/view/screens/NotFound.tsx
index 2ac05c469..7d51619b3 100644
--- a/src/view/screens/NotFound.tsx
+++ b/src/view/screens/NotFound.tsx
@@ -53,7 +53,11 @@ export const NotFoundScreen = () => {
           type="primary"
           label={canGoBack ? _(msg`Go Back`) : _(msg`Go Home`)}
           accessibilityLabel={canGoBack ? _(msg`Go back`) : _(msg`Go home`)}
-          accessibilityHint={canGoBack ? _(msg`Returns to previous page`) : _(msg`Returns to home page`)}
+          accessibilityHint={
+            canGoBack
+              ? _(msg`Returns to previous page`)
+              : _(msg`Returns to home page`)
+          }
           onPress={onPressHome}
         />
       </View>