From 5af735065ac58c0001455984c747873f55df8f5d Mon Sep 17 00:00:00 2001 From: sarendsen Date: Thu, 26 Dec 2024 11:31:37 +0100 Subject: [PATCH] Remove console.log --- app/(auth)/(tabs)/(libraries)/[libraryId].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(auth)/(tabs)/(libraries)/[libraryId].tsx b/app/(auth)/(tabs)/(libraries)/[libraryId].tsx index 685e1267..7d5679a1 100644 --- a/app/(auth)/(tabs)/(libraries)/[libraryId].tsx +++ b/app/(auth)/(tabs)/(libraries)/[libraryId].tsx @@ -46,7 +46,7 @@ import { colletionTypeToItemType } from "@/utils/collectionTypeToItemType"; const Page = () => { const searchParams = useLocalSearchParams(); const { libraryId } = searchParams as { libraryId: string }; - console.log(libraryId); + const [api] = useAtom(apiAtom); const [user] = useAtom(userAtom); const { width: screenWidth } = useWindowDimensions();