diff --git a/apps/web/src/app/(companies-list)/layout.tsx b/apps/web/src/app/(companies-list)/layout.tsx index 8d09661..72e1e62 100644 --- a/apps/web/src/app/(companies-list)/layout.tsx +++ b/apps/web/src/app/(companies-list)/layout.tsx @@ -1,4 +1,5 @@ import CompaniesHeader from "@/components/CompaniesHeader"; +import { CompaniesListSkeleton } from "@/components/CompaniesListSkeleton"; import Footer from "@/components/Footer"; import { Skeleton } from "@/components/ui/skeleton"; import { LayoutProps } from "@/lib/types"; @@ -24,11 +25,7 @@ const AppLoading = () => {
-
- - - -
+ ); }; diff --git a/apps/web/src/app/category/[category]/layout.tsx b/apps/web/src/app/category/[category]/layout.tsx index 1cc4567..0a13cfc 100644 --- a/apps/web/src/app/category/[category]/layout.tsx +++ b/apps/web/src/app/category/[category]/layout.tsx @@ -5,7 +5,7 @@ import { Suspense } from "react"; export default function CategoryPageLayout({ children }: LayoutProps) { return ( <> - Loading...}>{children} + {children}