aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/FullPageSpinner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/components/ui/FullPageSpinner.tsx')
-rw-r--r--apps/mobile/components/ui/FullPageSpinner.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mobile/components/ui/FullPageSpinner.tsx b/apps/mobile/components/ui/FullPageSpinner.tsx
index 89b66090..5436937a 100644
--- a/apps/mobile/components/ui/FullPageSpinner.tsx
+++ b/apps/mobile/components/ui/FullPageSpinner.tsx
@@ -2,7 +2,7 @@ import { ActivityIndicator, View } from "react-native";
export default function FullPageSpinner() {
return (
- <View className="h-full w-full items-center justify-center">
+ <View className="h-full w-full items-center justify-center bg-gray-100 dark:bg-background">
<ActivityIndicator />
</View>
);