aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/sharing.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/sharing.tsx')
-rw-r--r--apps/mobile/app/sharing.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/mobile/app/sharing.tsx b/apps/mobile/app/sharing.tsx
index c178d69e..bbeaeeee 100644
--- a/apps/mobile/app/sharing.tsx
+++ b/apps/mobile/app/sharing.tsx
@@ -66,7 +66,7 @@ function SaveBookmark({ setMode }: { setMode: (mode: Mode) => void }) {
return (
<View className="flex flex-row gap-3">
- <Text className="text-4xl">Hoarding</Text>
+ <Text className="text-4xl text-foreground">Hoarding</Text>
<ActivityIndicator />
</View>
);
@@ -83,11 +83,11 @@ export default function Sharing() {
break;
}
case "success": {
- comp = <Text className="text-4xl">Hoarded!</Text>;
+ comp = <Text className="text-4xl text-foreground">Hoarded!</Text>;
break;
}
case "error": {
- comp = <Text className="text-4xl">Error!</Text>;
+ comp = <Text className="text-4xl text-foreground">Error!</Text>;
break;
}
}