diff --git a/src/components/transactions/Bridge/BridgeActions.tsx b/src/components/transactions/Bridge/BridgeActions.tsx index 43ddaf09a1..b47e1c639d 100644 --- a/src/components/transactions/Bridge/BridgeActions.tsx +++ b/src/components/transactions/Bridge/BridgeActions.tsx @@ -205,7 +205,7 @@ export const BridgeActions = React.memo( handleApproval={approval} handleAction={action} requiresApproval={requiresApproval} - tryPermit={false} // permit not availabe + tryPermit={false} // permit not available sx={sx} {...props} /> diff --git a/src/layouts/AppGlobalStyles.tsx b/src/layouts/AppGlobalStyles.tsx index ca31f629ea..c46cb06a0c 100644 --- a/src/layouts/AppGlobalStyles.tsx +++ b/src/layouts/AppGlobalStyles.tsx @@ -14,7 +14,7 @@ export const ColorModeContext = React.createContext({ type Mode = 'light' | 'dark'; /** - * Main Layout component which wrapps around the whole app + * Main Layout component which wraps around the whole app * @param param0 * @returns */ diff --git a/src/store/poolSelectors.ts b/src/store/poolSelectors.ts index a16d339d32..369cb658d2 100644 --- a/src/store/poolSelectors.ts +++ b/src/store/poolSelectors.ts @@ -89,7 +89,7 @@ export const formatEmodes = (reserves: FormattedReservesAndIncentives[]) => { }); }); - // If all reserves have an eMode cateogry other than 0, we need to add the default empty one. + // If all reserves have an eMode category other than 0, we need to add the default empty one. // The UI assumes that there is always an eMode category 0, which is 'none'. if (!eModes[0]) { eModes[0] = { diff --git a/src/store/poolSlice.ts b/src/store/poolSlice.ts index 2f141eb07a..c83c732fdb 100644 --- a/src/store/poolSlice.ts +++ b/src/store/poolSlice.ts @@ -107,7 +107,7 @@ export interface PoolSlice { claimRewards: ( args: ClaimRewardsActionsProps & { formattedReserves: FormattedReservesAndIncentives[] } ) => Promise; - // TODO: optimize types to use only neccessary properties + // TODO: optimize types to use only necessary properties swapCollateral: (args: SwapActionProps) => Promise; withdrawAndSwitch: (args: WithdrawAndSwitchActionProps) => PopulatedTransaction; repay: (args: RepayArgs) => PopulatedTransaction;