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

View File

@@ -27,11 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set `black` formatter line length to 120 characters
- backend: migration squashing threshold to 15
- backend: moved top level `app` routes to `router.misc`
- frontend: Updated `eslint` to `9.x.x`, `@types/node` to `22.9.x`
## Removed
- frontend: Removed `@nkzw/eslint-config` package
- frontend: Most old packages from initial `vite` template
- backend: `IPAddress` Model (definition + DB state via migration) & all related code
## [0.2.2] - 2024-11-01

View File

@@ -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();