fiux linting errors

This commit is contained in:
NotII
2025-03-24 16:11:42 +00:00
parent 3e73e3b74e
commit 0aac1ab1f3
6 changed files with 2854 additions and 12 deletions

View File

@@ -1,9 +1,9 @@
"use client"
import React, { Suspense, lazy } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { _Button } from "@/components/ui/button";
import { _Input } from "@/components/ui/input";
import { _Label } from "@/components/ui/label";
// Use lazy loading for the form component
const LoginForm = lazy(() => import('./components/LoginForm'));