diff --git a/apps/oeth/src/components/ApyHeader.tsx b/apps/oeth/src/components/ApyHeader.tsx index d273c9119..ad87e571b 100644 --- a/apps/oeth/src/components/ApyHeader.tsx +++ b/apps/oeth/src/components/ApyHeader.tsx @@ -125,10 +125,7 @@ export function ApyHeader() { top: '-2px', }} > - + @@ -144,7 +141,7 @@ export function ApyHeader() { direction="row" > ; -export const BigintInput = forwardRef( +export const BigIntInput = forwardRef( ({ value, decimals = 18, isLoading, isError, onChange, ...rest }, ref) => { const [strVal, setStrVal] = useState(formatUnits(value, decimals)); @@ -103,4 +103,4 @@ export const BigintInput = forwardRef( }, ); -BigintInput.displayName = 'BigintInput'; +BigIntInput.displayName = 'BigIntInput'; diff --git a/libs/shared/components/src/Inputs/TokenInput.tsx b/libs/shared/components/src/Inputs/TokenInput.tsx index 5c3fb7c08..cd464dd56 100644 --- a/libs/shared/components/src/Inputs/TokenInput.tsx +++ b/libs/shared/components/src/Inputs/TokenInput.tsx @@ -4,12 +4,12 @@ import { alpha, Box, Button, Skeleton, Stack, Typography } from '@mui/material'; import { useIntl } from 'react-intl'; import { formatUnits } from 'viem'; -import { BigintInput } from './BigintInput'; +import { BigIntInput } from './BigIntInput'; import type { StackProps } from '@mui/material'; import type { Token } from '@origin/shared/contracts'; -import type { BigintInputProps } from './BigintInput'; +import type { BigintInputProps } from './BigIntInput'; export type TokenInputProps = { amount: bigint; @@ -68,7 +68,7 @@ export const TokenInput = forwardRef( return ( -