diff --git a/src/app/NewSafeProposal.tsx b/src/app/NewSafeProposal.tsx index 7bebb88..3e69f2a 100644 --- a/src/app/NewSafeProposal.tsx +++ b/src/app/NewSafeProposal.tsx @@ -246,7 +246,7 @@ const ViewProposal = ({ const hasApproved = address ? approvers.includes(address as Address) : false; - // count others that are needed to sign, taking into account self must have signed, and if self has signed + // count others that are needed to sign, taking into account that self must have signed, and if self has signed // exclude from others needed to sign const canExecute = determineIfCanExecute({ hasApproved, diff --git a/src/hooks/useLoadProposalFromQuery.ts b/src/hooks/useLoadProposalFromQuery.ts index 542637e..0ca1c24 100644 --- a/src/hooks/useLoadProposalFromQuery.ts +++ b/src/hooks/useLoadProposalFromQuery.ts @@ -20,7 +20,7 @@ export const useLoadProposalFromQuery = () => { const nonce = params.get(queryKeys["nonce"]); if (targets && calldatas) { - // ensure the 3 lengths are the same. check if values also has the same length if its not empty + // ensure the 3 lengths are the same. check if values also have the same length if it's not empty // check the inverse of the above, if inverse is true, return: if ( targets.length !== calldatas.length ||