Skip to content

expo-snack not detecting login  #635

@codinggnoww7-ctrl

Description

@codinggnoww7-ctrl

Summary

I'm experiencing an issue where Expo Snack keeps showing a message on the top left of the page "Log in to save your changes as you work" although I'm already logged in to my account! I have been facing this issue since last week.

Steps I have tried:
-Cleared browser cache and cookies
-Used incognito/private browser mode
-tried multiple browsers (e.g., Microsoft Edge, Chrome, Firefox)
-Logged out and logged in back
-Confirmed I'm logged into the correct Expo account

Environment:
-Browser: Microsoft Edge 138.0
-OS: Windows 10 Enterprise

Let me know if there is a fix for this or if it's a known issue. Thanks!

Image

What platform(s) does this occur on?

Web

SDK Version

53

Reproducible demo or steps to reproduce from a blank project

import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { View, Text, Button } from 'react-native';

import ProfileScreen from './Screens/profile';

const Stack = createNativeStackNavigator();

function HomeScreen({ navigation }) {
return (
<View
style={{
flex: 1,
justifyContent: 'center',
alignContent: 'center',
padding: 20,
gap: 20
}}>
Home Screen
<Button
title="Go to Details"
onPress={() => navigation.navigate('Details')} color="#33dd22"/>
<Button
title="Go to Profile"
onPress={() => navigation.navigate('Profile')} color="#ff55cc"/>

</View>

)
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions