Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lendihop committed Dec 20, 2024
1 parent 852efa9 commit 59584c0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const MAX_ERROR = 'max';

const TEN_SECONDS_IN_MS = 10_000;

const DEFAULT_SWR_CONGIG = {
const DEFAULT_SWR_CONFIG = {
shouldRetryOnError: false,
focusThrottleInterval: TEN_SECONDS_IN_MS,
refreshInterval: TEN_SECONDS_IN_MS,
Expand Down Expand Up @@ -81,7 +81,7 @@ export const FormContent: FC<Props> = ({ setModalHeaderConfig, setModalContent }
outputCurrency.code,
outputCurrency.network.code
),
DEFAULT_SWR_CONGIG
DEFAULT_SWR_CONFIG
);

const minMaxDataRef = useRef(minMaxData);
Expand Down Expand Up @@ -110,7 +110,7 @@ export const FormContent: FC<Props> = ({ setModalHeaderConfig, setModalContent }
coinToNetwork: outputCurrency.network.code
});
},
DEFAULT_SWR_CONGIG
DEFAULT_SWR_CONFIG
);

const { rate, toAmount } = useMemo(
Expand Down

0 comments on commit 59584c0

Please sign in to comment.