this repo has no description

nit

Changed files
+1 -2
app
(tabs)
+1 -2
app/(tabs)/index.tsx
··· 62 62 63 63 if (res.status === "error") { 64 64 Alert.alert("Authentication Error", (res.error as any).toString()); 65 - } 66 - if (res.status === "success") { 65 + } else if (res.status === "success") { 67 66 const newAgent = new Agent(res.session); 68 67 setAgent(newAgent); 69 68