diff --git a/packages/frontend/src/components/ui/input.tsx b/packages/frontend/src/components/ui/input.tsx index 7af0971..6922fc5 100644 --- a/packages/frontend/src/components/ui/input.tsx +++ b/packages/frontend/src/components/ui/input.tsx @@ -44,7 +44,7 @@ function Input({ : "text-muted-foreground", )} > - {currentLength}/{maxLength} + {String(currentLength).padStart(String(maxLength).length, "0")}/{maxLength} )}