more fixes web + mobile

This commit is contained in:
Thomas Demirdjian
2025-11-20 11:26:24 +01:00
parent fe9b2b9e8d
commit 70c94c97b4
32 changed files with 1214 additions and 226 deletions
+3 -2
View File
@@ -37,6 +37,7 @@ import Providers from "./src/providers";
import { LogBox } from "react-native";
import CommentsBottomSheet from "./src/components/bottomsheets/CommentsBottomSheet";
import ShareQrModalContainer from "./src/components/modal/ShareQrModalContainer";
import AppDownloadBanner from "./src/components/AppDownloadBanner";
import "./src/utils/Sheet";
console.disableYellowBox = true;
@@ -49,8 +50,7 @@ setGlobal(initialGlobalState);
SplashScreen.preventAutoHideAsync();
const App = () => {
const [currentUID, setCurrentUID] = useGlobal("currentUID");
const [pendingData, setPendingData] = useGlobal("pendingData");
const [, setCurrentUID] = useGlobal("currentUID");
const [, setCurrentUserRoles] = useGlobal("currentUserRoles");
const [appIsReady, setAppIsReady] = useState(false);
@@ -198,6 +198,7 @@ const App = () => {
</NavigationContainer>
<CommentsBottomSheet />
<ShareQrModalContainer />
<AppDownloadBanner />
{/* </AppLayout> */}
</MenuProvider>
</Providers>