diff --git a/apps/cowswap-frontend/src/modules/permit/types.ts b/apps/cowswap-frontend/src/modules/permit/types.ts index d1cc15571f..92cdd414c6 100644 --- a/apps/cowswap-frontend/src/modules/permit/types.ts +++ b/apps/cowswap-frontend/src/modules/permit/types.ts @@ -13,7 +13,6 @@ export type PermitType = 'dai-like' | 'eip-2612' export type SupportedPermitInfo = { type: PermitType - gasLimit: number } type UnsupportedPermitInfo = false export type PermitInfo = SupportedPermitInfo | UnsupportedPermitInfo diff --git a/apps/cowswap-frontend/src/modules/permit/utils/checkIsTokenPermittable.ts b/apps/cowswap-frontend/src/modules/permit/utils/checkIsTokenPermittable.ts index 8093044c24..a0fca515ad 100644 --- a/apps/cowswap-frontend/src/modules/permit/utils/checkIsTokenPermittable.ts +++ b/apps/cowswap-frontend/src/modules/permit/utils/checkIsTokenPermittable.ts @@ -136,7 +136,6 @@ async function estimateTokenPermit(params: EstimateParams): Promise PERMIT_GAS_LIMIT_MIN[chainId] ? { - gasLimit, type, } : false