refactor!: remove unused resizable components and enhance efficiency in critical areas

Remove outdated `ResizablePanelGroup`, `ResizablePanel`, and `ResizableHandle` components from the codebase. Optimize API error handling with anti-spam protection for repetitive errors. Update Dockerfile for streamlined builds, improve sitemap generation in `app`, and refactor lazy loading using `React.Suspense`. Refine services to support enhanced query parameters like `author`.
This commit is contained in:
Mathis HERRIOT
2026-01-14 16:37:55 +01:00
parent 37a23390d5
commit fbc231dc9a
8 changed files with 61 additions and 114 deletions

View File

@@ -24,9 +24,13 @@ export default function DashboardLayout({
{children}
{modal}
</main>
<MobileFilters />
<React.Suspense fallback={null}>
<MobileFilters />
</React.Suspense>
</div>
<SearchSidebar />
<React.Suspense fallback={null}>
<SearchSidebar />
</React.Suspense>
</SidebarInset>
</SidebarProvider>
);