diff --git a/src/features/addressBook/ContactDetails.tsx b/src/features/addressBook/ContactDetails.tsx index b1566410d..dc671e0a2 100644 --- a/src/features/addressBook/ContactDetails.tsx +++ b/src/features/addressBook/ContactDetails.tsx @@ -66,7 +66,7 @@ const ContactDetails = ({ action, contact }: Props) => { const spacing = useSpacing() const { showOKCancelAlert } = useAlert() const { connection } = useSolana() - // debounce is needed to avoid unneccessary rpc calls + // debounce is needed to avoid unnecessary rpc calls const [debouncedAddress] = useDebounce(address, 800) useEffect(() => { diff --git a/src/features/governance/TransferTokensModal.tsx b/src/features/governance/TransferTokensModal.tsx index 762ba8b76..4d387656e 100644 --- a/src/features/governance/TransferTokensModal.tsx +++ b/src/features/governance/TransferTokensModal.tsx @@ -94,7 +94,7 @@ export const TransferTokensModal = ({ setTransactionError(e.message || t('gov.errors.transferPosition')) } - // error handling on postiion card + // error handling on position card onClose() } } diff --git a/src/features/governance/VotingPowerCard.tsx b/src/features/governance/VotingPowerCard.tsx index 43adda3a8..104d97ad3 100644 --- a/src/features/governance/VotingPowerCard.tsx +++ b/src/features/governance/VotingPowerCard.tsx @@ -187,7 +187,7 @@ export const VotingPowerCard = ({ myVotingPower && amountLocked && mintAcc && - // Add 2 decimals to the mulitiplier + // Add 2 decimals to the multiplier humanReadable( myVotingPower .mul(new BN(100)) diff --git a/src/navigation/TabBarNavigator.tsx b/src/navigation/TabBarNavigator.tsx index 9ffdc6a13..5646dae18 100644 --- a/src/navigation/TabBarNavigator.tsx +++ b/src/navigation/TabBarNavigator.tsx @@ -81,7 +81,7 @@ function MyTabBar({ state, navigation }: BottomTabBarProps) { canPreventDefault: true, }) - // Check if activty tab is selected and has new transactions + // Check if activity tab is selected and has new transactions if (selectedValue === 'activity' && hasNewTransactions) { resetNewTransactions() } diff --git a/src/utils/getDomainOwner.ts b/src/utils/getDomainOwner.ts index f6f02ed59..e3b159728 100644 --- a/src/utils/getDomainOwner.ts +++ b/src/utils/getDomainOwner.ts @@ -2,7 +2,7 @@ import { TldParser } from '@onsol/tldparser' import { Connection, PublicKey } from '@solana/web3.js' import { resolve } from '@bonfida/spl-name-service' -// retrives AllDomain domain owner. +// retrieves AllDomain domain owner. // the domain must include the dot export async function fetchDomainOwner(connection: Connection, domain: string) { try {