frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: re-export our own stack

serenity f458ef54 eed792ad

+7 -2
+1 -1
src/app/(protected)/_layout.tsx
··· 1 1 import { SessionGate } from "@/components/Auth/SessionGate"; 2 + import { Stack } from "@/components/primitives/Stack"; 2 3 import { AuthedProviders } from "@/providers/authed"; 3 - import { Stack } from "expo-router"; 4 4 5 5 export default function ProtectedLayout() { 6 6 return (
+1 -1
src/app/_layout.tsx
··· 1 + import { Stack } from "@/components/primitives/Stack"; 1 2 import { isDevMode } from "@/lib/utils/env"; 2 3 import { RootProviders } from "@/providers"; 3 - import { Stack } from "expo-router"; 4 4 import { useEffect } from "react"; 5 5 import { Platform } from "react-native"; 6 6
+5
src/components/primitives/Stack.tsx
··· 1 + import { Stack as ExpoStack } from "expo-router"; 2 + 3 + export const Stack = () => { 4 + return <ExpoStack screenOptions={{ headerShown: false }} />; 5 + };