Skip to content

Commit 9594a37

Browse files
committed
chore: lint fixes
1 parent bb41352 commit 9594a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/src/pages/components/settings-input.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type SettingsToggleProps = {
4545
onChange?: (value: any) => void
4646
title: any
4747
hint?: any
48-
} & InputProps &
48+
} & Omit<InputProps, "title"> &
4949
VariantProps<typeof inputVariants>
5050
export default forwardRef<HTMLInputElement, SettingsToggleProps>(function SettingsInput(
5151
{ className, name: key, title: placeholder, hint, ...props },

0 commit comments

Comments
 (0)