mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-06 03:15:35 -06:00
Remove outdated CHANGELOG entries, simplify imports, remove Next.js specifier
This commit is contained in:
@@ -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
|
- Set `black` formatter line length to 120 characters
|
||||||
- backend: migration squashing threshold to 15
|
- backend: migration squashing threshold to 15
|
||||||
- backend: moved top level `app` routes to `router.misc`
|
- backend: moved top level `app` routes to `router.misc`
|
||||||
- frontend: Updated `eslint` to `9.x.x`, `@types/node` to `22.9.x`
|
|
||||||
|
|
||||||
## Removed
|
## 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
|
- backend: `IPAddress` Model (definition + DB state via migration) & all related code
|
||||||
|
|
||||||
## [0.2.2] - 2024-11-01
|
## [0.2.2] - 2024-11-01
|
||||||
|
|||||||
@@ -1,16 +1,14 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { Icons } from "@/components/icons";
|
import { Icons } from "@/components/icons";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { Label } from "@/components/ui/label";
|
import { Label } from "@/components/ui/label";
|
||||||
import { cn } from "@/lib/utils";
|
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) {
|
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) {
|
async function onSubmit(event: React.SyntheticEvent) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|||||||
Reference in New Issue
Block a user