diff options
Diffstat (limited to 'packages/mobile/app/dashboard/lists')
| -rw-r--r-- | packages/mobile/app/dashboard/lists/[slug].tsx | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/packages/mobile/app/dashboard/lists/[slug].tsx b/packages/mobile/app/dashboard/lists/[slug].tsx deleted file mode 100644 index 54744874..00000000 --- a/packages/mobile/app/dashboard/lists/[slug].tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { useLocalSearchParams, Stack } from "expo-router"; -import { View } from "react-native"; - -import BookmarkList from "@/components/bookmarks/BookmarkList"; -import FullPageSpinner from "@/components/ui/FullPageSpinner"; -import { api } from "@/lib/trpc"; - -export default function ListView() { - const { slug } = useLocalSearchParams(); - if (typeof slug !== "string") { - throw new Error("Unexpected param type"); - } - const { data: list } = api.lists.get.useQuery({ listId: slug }); - - if (!list) { - return <FullPageSpinner />; - } - - return ( - <> - <Stack.Screen - options={{ - headerTitle: `${list.icon} ${list.name}`, - }} - /> - <View> - <BookmarkList archived={false} ids={list.bookmarks} /> - </View> - </> - ); -} |
