diff --git a/packages/nextjs/hooks/scaffold-eth/useScaffoldContractWrite.ts b/packages/nextjs/hooks/scaffold-eth/useScaffoldContractWrite.ts index b1b51c29..c8207c99 100644 --- a/packages/nextjs/hooks/scaffold-eth/useScaffoldContractWrite.ts +++ b/packages/nextjs/hooks/scaffold-eth/useScaffoldContractWrite.ts @@ -54,7 +54,7 @@ export const useScaffoldContractWrite = < value?: UseScaffoldWriteConfig["value"]; } & UpdatedArgs = {}) => { if (!deployedContractData) { - notification.error("Target Contract is not deployed, did you forgot to run `yarn deploy`?"); + notification.error("Target Contract is not deployed, did you forget to run `yarn deploy`?"); return; } if (!chain?.id) { @@ -62,7 +62,7 @@ export const useScaffoldContractWrite = < return; } if (chain?.id !== configuredNetwork.id) { - notification.error("You on the wrong network"); + notification.error("You are on the wrong network"); return; }