From e1e4008fbc7701c583f5bf6109443926f5fed076 Mon Sep 17 00:00:00 2001 From: Jose Felix Date: Tue, 26 Nov 2024 17:22:34 -0400 Subject: [PATCH] improvement: typos --- packages/web/hooks/limit-orders/use-place-limit.ts | 4 ++-- packages/web/hooks/use-swap.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/web/hooks/limit-orders/use-place-limit.ts b/packages/web/hooks/limit-orders/use-place-limit.ts index afe1540bb7..3bf52fa05c 100644 --- a/packages/web/hooks/limit-orders/use-place-limit.ts +++ b/packages/web/hooks/limit-orders/use-place-limit.ts @@ -289,7 +289,7 @@ export const usePlaceLimit = ({ use1CTSwapReviewMessages(); /** - * Default isLedger to True, just in case the wallet does + * Default isLedger to true, just in case the wallet does * not return the correct value */ const { value: isLedger } = useAsync(async () => { @@ -297,7 +297,7 @@ export const usePlaceLimit = ({ accountStore.osmosisChainId ); return result?.isNanoLedger ?? true; - // Disable deps to include account address in order to recompute the value as the other are memoized mobx values + // Disable deps to include account address in order to recompute the value as the others are memoized mobx values // eslint-disable-next-line react-hooks/exhaustive-deps }, [account, account?.address, accountStore.osmosisChainId]); diff --git a/packages/web/hooks/use-swap.tsx b/packages/web/hooks/use-swap.tsx index d88aaf79d5..fcf94c6a8f 100644 --- a/packages/web/hooks/use-swap.tsx +++ b/packages/web/hooks/use-swap.tsx @@ -335,7 +335,7 @@ export function useSwap( use1CTSwapReviewMessages(); /** - * Default isLedger to True, just in case the wallet does + * Default isLedger to true, just in case the wallet does * not return the correct value */ const { value: isLedger } = useAsync(async () => { @@ -343,7 +343,7 @@ export function useSwap( accountStore.osmosisChainId ); return result?.isNanoLedger ?? true; - // Disable deps to include account address in order to recompute the value as the other are memoized mobx values + // Disable deps to include account address in order to recompute the value as the others are memoized mobx values // eslint-disable-next-line react-hooks/exhaustive-deps }, [account, account?.address, accountStore.osmosisChainId]);