Skip to content

Commit

Permalink
Back where it belongs
Browse files Browse the repository at this point in the history
  • Loading branch information
koredefashokun committed Jan 4, 2025
1 parent 8649ae7 commit 8a2019a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/app/src/screens/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React from 'react';
import { ActivityIndicator, View } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';

import FollowedStores from '../components/home/FollowedStores';
import RecentOrders from '../components/home/RecentOrders';
import { useHomeQuery } from '../types/api';
import { HomeStackParamList } from '../types/navigation';
Expand Down Expand Up @@ -31,6 +32,7 @@ const Home: React.FC = () => {
}}
/>
<ScrollableScreen>
<FollowedStores followed={data.currentUser.followed} />
<RecentOrders orders={data.currentUser.orders} />
</ScrollableScreen>
</Screen>
Expand Down

0 comments on commit 8a2019a

Please sign in to comment.