Skip to content

Commit

Permalink
mobile: ProfileTabs: remove unused activity tab
Browse files Browse the repository at this point in the history
Part of #203
  • Loading branch information
ericswpark committed Apr 20, 2024
1 parent 0cdd14a commit 6d49beb
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions mobile/Components/ProfileTabs/ProfileTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,6 @@ function ProfileTab(props) {
);
}

function ActivityTab({}) {
return (
<View style={{ flex: 1 }}>
{/* <BookInfoModalReview bookInfo={bookInfo} /> */}
</View>
);
}

function StatsTab() {
return (
<View style={{ flex: 1 }}>
Expand All @@ -325,7 +317,6 @@ function ProfileTabs() {
sceneContainerStyle={{ backgroundColor: "transparent" }}
>
<Tab.Screen name="Profile" children={(props) => <ProfileTab />} />
<Tab.Screen name="Activity" children={(props) => <ActivityTab />} />
<Tab.Screen name="Statistics" component={StatsTab} />
</Tab.Navigator>
);
Expand Down

0 comments on commit 6d49beb

Please sign in to comment.