diff --git a/tdrive/frontend/src/app/atoms/input/input-text.tsx b/tdrive/frontend/src/app/atoms/input/input-text.tsx
index 1f0a126f..a9cab85d 100644
--- a/tdrive/frontend/src/app/atoms/input/input-text.tsx
+++ b/tdrive/frontend/src/app/atoms/input/input-text.tsx
@@ -66,7 +66,7 @@ export const Input = (props: InputProps) => {
@@ -75,7 +75,7 @@ export const Input = (props: InputProps) => {
ref={props.inputRef as React.Ref}
type="text"
className={inputClassName + ' ' + props.inputClassName + ' ' + props.className}
- {..._.omit(props, 'label', 'inputClassName', 'className', 'size')}
+ {..._.omit(props, 'label', 'inputClassName', 'inputRef', 'className', 'size')}
/>
))}
>