From 2de2e44ed6d3966eddf99366e4d6c85eab77373a Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 7 Jun 2024 09:30:26 -0700 Subject: [PATCH] hide lists tab correctly --- src/screens/StarterPack/Main/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/screens/StarterPack/Main/index.tsx b/src/screens/StarterPack/Main/index.tsx index eb2c719431..fa31323164 100644 --- a/src/screens/StarterPack/Main/index.tsx +++ b/src/screens/StarterPack/Main/index.tsx @@ -53,9 +53,11 @@ export function StarterPackScreen({ const items = [ ...(starterPack.list ? ['People'] : []), - ...(starterPack.feeds ? ['Feeds'] : []), + ...(starterPack.feeds.length ? ['Feeds'] : []), ] + console.log(starterPack.feeds) + return (