Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
group117 committed Jul 17, 2024
1 parent 73cfe64 commit c45a180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from 'react';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import LoginScreen from '@/screens/LoginScreen';
import Signup from '@/screens/SignupScreen';
import HomeScreen from '@/screens/HomeScreen';
import HomePage from '@/screens/HomeScreen';

Check failure on line 6 in frontend/app/index.tsx

View workflow job for this annotation

GitHub Actions / lint

Unable to resolve path to module '@/screens/HomeScreen'

type RootStackParamList = {
Login: undefined;
Expand All @@ -18,7 +18,7 @@ const App: React.FC = () => {
<Stack.Navigator initialRouteName='Login'>
<Stack.Screen name='Login' component={LoginScreen} />
<Stack.Screen name='Signup' component={Signup} />
<Stack.Screen name='Home' component={HomeScreen} />
<Stack.Screen name='Home' component={HomePage} />
</Stack.Navigator>
);
};
Expand Down

0 comments on commit c45a180

Please sign in to comment.