From 0684ebfdf6c73e9d7460655407a1e55237d4c6ba Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Sat, 13 Dec 2025 18:39:04 -0300 Subject: [PATCH] fix(frontend): remove invalid AdminSidebar import from candidates page The AdminSidebar component doesn't exist - the dashboard layout already provides the sidebar. --- frontend/src/app/dashboard/candidates/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/app/dashboard/candidates/page.tsx b/frontend/src/app/dashboard/candidates/page.tsx index 976ae96..631c289 100644 --- a/frontend/src/app/dashboard/candidates/page.tsx +++ b/frontend/src/app/dashboard/candidates/page.tsx @@ -1,7 +1,6 @@ "use client" import { useState } from "react" -import { AdminSidebar } from "@/components/admin-sidebar" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"