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/features/addressBook/ContactDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/features/governance/TransferTokensModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/features/governance/VotingPowerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion src/navigation/TabBarNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/getDomainOwner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down