Skip to content

Commit

Permalink
fix: connector gnosisSafe error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanbenoit-richez committed Jan 4, 2024
1 parent 9c0d178 commit 993d58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CreateOffer/CreateOffers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const CreateOffer = () => {
const priceInWei = new BigNumber(offer.price.toString()).shiftedBy(Number(buyerTokenDecimals)).toString(10);
const transactionDeadline = Math.floor(Date.now() / 1000) + 3600;

const isSafe = connector == "gnosis-safe";
const isSafe = connector == "gnosisSafe";

let permitAnswer: any|undefined = undefined;
let needPermit = false;
Expand Down

0 comments on commit 993d58d

Please sign in to comment.