From b42ddfedeefff88ce77098efe2529416cb85ac4a Mon Sep 17 00:00:00 2001 From: Aamir Azad <82281117+aamirazad@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:06:20 -0400 Subject: [PATCH] fix: rework skeleton loader for the thumbnail loading (#117) ### TL;DR Switches the old pdf skeleton loader to a more accurate thumbnail shaped skeleton loader. --- src/components/document-preview.tsx | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/src/components/document-preview.tsx b/src/components/document-preview.tsx index 1d5d2e6..78a169e 100644 --- a/src/components/document-preview.tsx +++ b/src/components/document-preview.tsx @@ -5,7 +5,6 @@ import { QueryClientProvider, QueryClient, } from "@tanstack/react-query"; -import type { AdviceAPIType } from "@/types"; import type { UsersTableType } from "@/server/db/schema"; import { Button, buttonVariants } from "@/components/ui/button"; import { ChevronLeft } from "lucide-react"; @@ -40,30 +39,11 @@ export async function getPaperlessThumbnail( } function SkeletonLoader() { - const { data: advice, isLoading } = useQuery({ - queryKey: ["advice"], - queryFn: async () => { - const response = await fetch("https://api.adviceslip.com/advice"); - return (await response.json()) as AdviceAPIType; - }, - }); - return ( -