aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/+not-found.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/+not-found.tsx')
-rw-r--r--apps/mobile/app/+not-found.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/mobile/app/+not-found.tsx b/apps/mobile/app/+not-found.tsx
new file mode 100644
index 00000000..466505b6
--- /dev/null
+++ b/apps/mobile/app/+not-found.tsx
@@ -0,0 +1,6 @@
+import { View } from "react-native";
+
+// This is kinda important given that the sharing modal always resolve to an unknown route
+export default function NotFound() {
+ return <View />;
+}