diff --git a/apps/web/src/components/ui/input.tsx b/apps/web/src/components/ui/input.tsx index c458e03..42f4c45 100644 --- a/apps/web/src/components/ui/input.tsx +++ b/apps/web/src/components/ui/input.tsx @@ -16,7 +16,7 @@ const Input = React.forwardRef( type, showPassword, onShowPasswordChange, - value = "", + value, ...props }, ref diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..7175ec2 --- /dev/null +++ b/biome.json @@ -0,0 +1,34 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.0.4/schema.json", + "vcs": { + "enabled": false, + "clientKind": "git", + "useIgnoreFile": false + }, + "files": { + "ignoreUnknown": false + }, + "formatter": { + "enabled": true, + "indentStyle": "tab" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "javascript": { + "formatter": { + "quoteStyle": "double" + } + }, + "assist": { + "enabled": true, + "actions": { + "source": { + "organizeImports": "on" + } + } + } +}