Skip to content

Commit d3ed469

Browse files
authored
feat: force fix filename issue on Vercel (#102)
* fix: temp file rename
1 parent f696f5f commit d3ed469

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

apps/client/src/components/inputs/Input.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,21 @@ interface InputProps extends VariantProps<typeof InputBase>, InputWrapperProps {
4949
icon?: LucideIcon;
5050
className?: string;
5151
placeholder?: string;
52+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
53+
maxLength?: number;
54+
value?: string;
5255
}
5356

5457
const Input = forwardRef<HTMLInputElement, InputProps>(
55-
({ icon, label, description, containerClassName, className, placeholder, ...props }, ref) => {
58+
({ icon, label, description, containerClassName, className, ...props }, ref) => {
5659
const Icon = icon;
5760
return (
5861
<InputWrapper
5962
label={label}
6063
description={description}
6164
containerClassName={containerClassName}
6265
>
63-
<InputBase ref={ref} {...props} withIcon={!!icon} placeholder={placeholder} />
66+
<InputBase ref={ref} {...props} withIcon={!!icon} />
6467
{Icon && (
6568
<Icon className="absolute left-2 top-2.5 h-4 w-4 text-black-secondary" />
6669
)}
File renamed without changes.

0 commit comments

Comments
 (0)