Skip to content

Commit ec841b6

Browse files
fix(token-input): use as any cast in test renderInput to match TokenAmountField pattern
1 parent 80cbb18 commit ec841b6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/components/sharedComponents/BigNumberInput.test.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ describe('BigNumberInput with renderInput (NumericFormat)', () => {
146146
thousandSeparator
147147
onValueChange={({ value: v }) => handleChange(v)}
148148
value={displayVal as string | undefined}
149-
{...restProps}
149+
// biome-ignore lint/suspicious/noExplicitAny: mirrors TokenAmountField pattern
150+
{...(restProps as any)}
150151
/>
151152
)}
152153
{...props}

0 commit comments

Comments
 (0)