aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/error.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/error.tsx')
-rw-r--r--apps/mobile/app/error.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/mobile/app/error.tsx b/apps/mobile/app/error.tsx
index d0e4a7df..6e975306 100644
--- a/apps/mobile/app/error.tsx
+++ b/apps/mobile/app/error.tsx
@@ -1,9 +1,10 @@
-import { Text, View } from "react-native";
+import { View } from "react-native";
+import { Text } from "@/components/ui/Text";
export default function ErrorPage() {
return (
<View className="flex-1 items-center justify-center gap-4">
- <Text className="text-4xl">Error!</Text>
+ <Text variant="largeTitle">Error!</Text>
</View>
);
}