refactor: remove unused import

This commit is contained in:
Sosokker 2025-04-03 10:33:28 +07:00
parent 1940a0034a
commit 2b921514da
2 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@ import {
} from "@/components/ui/dialog"; } from "@/components/ui/dialog";
import { Input } from "@/components/ui/input"; import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import Link from "next/link";
import { Label } from "@/components/ui/label"; import { Label } from "@/components/ui/label";
export default function ForgotPasswordModal() { export default function ForgotPasswordModal() {

View File

@ -18,7 +18,6 @@ import { loginUser } from "@/api/authentication";
import { SessionContext } from "@/context/SessionContext"; import { SessionContext } from "@/context/SessionContext";
import { Eye, EyeOff, Leaf, ArrowRight, AlertCircle, Loader2 } from "lucide-react"; import { Eye, EyeOff, Leaf, ArrowRight, AlertCircle, Loader2 } from "lucide-react";
import { Alert, AlertDescription } from "@/components/ui/alert"; import { Alert, AlertDescription } from "@/components/ui/alert";
import { ThemeToggle } from "@/components/theme-toggle";
export default function SigninPage() { export default function SigninPage() {
const [serverError, setServerError] = useState<string | null>(null); const [serverError, setServerError] = useState<string | null>(null);