Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Mar 29, 2024
1 parent 40f6ff2 commit 8a9c7d9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/app/(tabs)/search/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
import { Stack } from 'expo-router';
import { FilterContextProvider } from '../../../utils/FilterContext';

function StackLayout() {
return (
<FilterContextProvider>
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
</FilterContextProvider>
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}

Expand Down

0 comments on commit 8a9c7d9

Please sign in to comment.