diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 02d79b0244..41d22b8fed 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -104,7 +104,7 @@ const contentSecurityPolicy = { 'https://i.seadn.io/', // ens avatars 'https://api.opensea.io', // enables getting ENS avatars 'https://ipfs.io', // ipfs ens avatar resolution - 'https://cloudflare-ipfs.com', // ipfs Cloudfare ens avatar resolution + 'https://cloudflare-ipfs.com', // ipfs Cloudflare ens avatar resolution 'wss://www.walletlink.org', 'https://base.easscan.org/graphql', 'https://api.guild.xyz/', @@ -131,7 +131,7 @@ const contentSecurityPolicy = { 'https://*.walletconnect.com/', // WalletConnect 'https://i.seadn.io/', // ens avatars 'https://ipfs.io', // ipfs ens avatar resolution - 'https://cloudflare-ipfs.com', // ipfs Cloudfare ens avatar resolution + 'https://cloudflare-ipfs.com', // ipfs Cloudflare ens avatar resolution 'https://res.cloudinary.com', `https://${process.env.NEXT_PUBLIC_PINATA_GATEWAY_URL}`, ], diff --git a/apps/web/src/components/Basenames/UsernameProfileTransferOwnershipModal/context.tsx b/apps/web/src/components/Basenames/UsernameProfileTransferOwnershipModal/context.tsx index 04b785421a..12a22dc45f 100644 --- a/apps/web/src/components/Basenames/UsernameProfileTransferOwnershipModal/context.tsx +++ b/apps/web/src/components/Basenames/UsernameProfileTransferOwnershipModal/context.tsx @@ -309,7 +309,7 @@ export default function ProfileTransferOwnershipProvider({ // If the setting transaction is Idle and either // - Is the first transaction - // - Previous transaction is successfull + // - Previous transaction is successful const canCallfunction = ownershipSetting.status === WriteTransactionWithReceiptStatus.Idle && (currentIndex === 0 || @@ -336,7 +336,7 @@ export default function ProfileTransferOwnershipProvider({ () => // Smart wallet: One transaction batchCallsStatus === BatchCallsStatus.Success || - // Other wallet: 4 Transactions are successfull + // Other wallet: 4 Transactions are successful (ownershipSettings.length > 0 && ownershipSettings.every( (ownershipSetting) => diff --git a/apps/web/src/hooks/useRegisterNameCallback.ts b/apps/web/src/hooks/useRegisterNameCallback.ts index 211a16cbc7..479d28be57 100644 --- a/apps/web/src/hooks/useRegisterNameCallback.ts +++ b/apps/web/src/hooks/useRegisterNameCallback.ts @@ -94,7 +94,7 @@ export function useRegisterNameCallback( owner: address, // The address of the owner for the name. duration: secondsInYears(years), // The duration of the registration in seconds. resolver: USERNAME_L2_RESOLVER_ADDRESSES[basenameChain.id], // The address of the resolver to set for this name. - data: [addressData, nameData], // Multicallable data bytes for setting records in the associated resolver upon reigstration. + data: [addressData, nameData], // Multicallable data bytes for setting records in the associated resolver upon registration. reverseRecord, // Bool to decide whether to set this name as the "primary" name for the `owner`. }; diff --git a/apps/web/src/hooks/useWriteBaseEnsTextRecords.ts b/apps/web/src/hooks/useWriteBaseEnsTextRecords.ts index 0ea0a9d582..446f237b05 100644 --- a/apps/web/src/hooks/useWriteBaseEnsTextRecords.ts +++ b/apps/web/src/hooks/useWriteBaseEnsTextRecords.ts @@ -18,11 +18,11 @@ export type UseWriteBaseEnsTextRecordsProps = { /* A hook to set update TextRecords in a batch - Responsabilities: + Responsibilities: - Get existing TextRecords - Keep track of TextRecords updates - Wait for the transaction to be processed - - Refetch records on successfull request + - Refetch records on successful request - Log errors and analytics accordingly */ diff --git a/apps/web/src/hooks/useWriteContractWithReceipt.ts b/apps/web/src/hooks/useWriteContractWithReceipt.ts index 99dde89af5..b8fa9334ff 100644 --- a/apps/web/src/hooks/useWriteContractWithReceipt.ts +++ b/apps/web/src/hooks/useWriteContractWithReceipt.ts @@ -8,7 +8,7 @@ import { useAccount, useSwitchChain, useWaitForTransactionReceipt, useWriteContr /* A hook to request and track a wallet write transaction - Responsabilities: + Responsibilities: - Track the wallet request status - Track the transaction receipt and status - Log analytics & error diff --git a/apps/web/src/hooks/useWriteContractsWithLogs.ts b/apps/web/src/hooks/useWriteContractsWithLogs.ts index ee0751e7b3..40ebb14780 100644 --- a/apps/web/src/hooks/useWriteContractsWithLogs.ts +++ b/apps/web/src/hooks/useWriteContractsWithLogs.ts @@ -38,7 +38,7 @@ export enum BatchCallsStatus { Processing = 'processing', Reverted = 'reverted', - // UserOperationEvent and top transaction are successfull + // UserOperationEvent and top transaction are successful Failed = 'failed', Success = 'success', }