From cfadc7d8ef8113c2229eab898deb8976ba3e45f6 Mon Sep 17 00:00:00 2001 From: GaspardBBY <96123850+GaspardBBY@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:56:16 +0100 Subject: [PATCH] fix/production-login-bug-2 (#123) * fix: try close webbroser on prod * chore: moved fix on a single page compared to layout --- expo/app/(tabs)/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/expo/app/(tabs)/index.tsx b/expo/app/(tabs)/index.tsx index 963de632..db5b4a46 100644 --- a/expo/app/(tabs)/index.tsx +++ b/expo/app/(tabs)/index.tsx @@ -1,6 +1,8 @@ +import * as WebBrowser from "expo-web-browser"; import { Text } from "react-native"; export default function TabOneScreen() { + WebBrowser.maybeCompleteAuthSession(); return ( <> Index