Remove outdated CHANGELOG entries, simplify imports, remove Next.js specifier

This commit is contained in:
2024-11-10 19:02:30 -06:00
parent fb0193bc76
commit 3e435581d4
2 changed files with 4 additions and 7 deletions
@@ -1,16 +1,14 @@
"use client";
import { Icons } from "@/components/icons";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { cn } from "@/lib/utils";
import React from "react";
import { HTMLAttributes, useState } from "react";
interface UserAuthFormProps extends React.HTMLAttributes<HTMLDivElement> {}
interface UserAuthFormProps extends HTMLAttributes<HTMLDivElement> {}
export function UserAuthForm({ className, ...props }: UserAuthFormProps) {
const [isLoading, setIsLoading] = React.useState<boolean>(false);
const [isLoading, setIsLoading] = useState<boolean>(false);
async function onSubmit(event: React.SyntheticEvent) {
event.preventDefault();