Skip to content

Commit

Permalink
fix: Design fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisParedes1 committed Nov 9, 2023
1 parent 665e800 commit 7939d55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/screens/chat/chat-list-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const ChatListScreen = () => {
{/* <View style={styles.card}> */}

{/* Header */}
<ChatListHeader />
{/* <ChatListHeader /> */}

{/* navigate('Snap', { id: item.id }) */}

Expand Down
4 changes: 2 additions & 2 deletions src/screens/chat/chat-navigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Chat, ChatBase } from '@/screens';
import ChatScreen from './chat-screen';

export type ChatStackParamList = {
ChatPrincipal: undefined;
Chats: undefined;
ChatScreen: {
chat: ChatBase;
};
Expand All @@ -17,7 +17,7 @@ const Stack = createNativeStackNavigator<ChatStackParamList>();
export const ChatNavigator = () => {
return (
<Stack.Navigator>
<Stack.Screen name="ChatPrincipal" component={Chat} />
<Stack.Screen name="Chats" component={Chat} />
<Stack.Screen name="ChatScreen" component={ChatScreen} />
</Stack.Navigator>
);
Expand Down

0 comments on commit 7939d55

Please sign in to comment.