diff --git a/components/utility-screen.tsx b/components/utility-screen.tsx index 4e91356d..7b42258d 100644 --- a/components/utility-screen.tsx +++ b/components/utility-screen.tsx @@ -1,4 +1,5 @@ import { + Platform, Text, View, } from 'react-native'; @@ -45,7 +46,11 @@ const UtilityScreen = ({ return "Down For Maintenance"; } if (serverStatus === "please update") { - return "Please Update Your App 😇" + if (Platform.OS === 'web') { + return "Please Refresh This Page 😇" + } else { + return "Please Update Your App 😇" + } } // Just in case the type signature is a lie