Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/transactions/Bridge/BridgeActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/AppGlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/store/poolSelectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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] = {
Expand Down
2 changes: 1 addition & 1 deletion src/store/poolSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export interface PoolSlice {
claimRewards: (
args: ClaimRewardsActionsProps & { formattedReserves: FormattedReservesAndIncentives[] }
) => Promise<EthereumTransactionTypeExtended[]>;
// TODO: optimize types to use only neccessary properties
// TODO: optimize types to use only necessary properties
swapCollateral: (args: SwapActionProps) => Promise<EthereumTransactionTypeExtended[]>;
withdrawAndSwitch: (args: WithdrawAndSwitchActionProps) => PopulatedTransaction;
repay: (args: RepayArgs) => PopulatedTransaction;
Expand Down