From 74b4391f903d021259ce169527a7c7ce51e3e0b7 Mon Sep 17 00:00:00 2001 From: Alexandr Kazachenko Date: Tue, 24 Sep 2024 12:26:02 +0500 Subject: [PATCH] chore: fix claim airdrop hook dapp --- .../src/modules/hooksStore/dapps/AirdropHookApp/hook.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/cowswap-frontend/src/modules/hooksStore/dapps/AirdropHookApp/hook.tsx b/apps/cowswap-frontend/src/modules/hooksStore/dapps/AirdropHookApp/hook.tsx index dc9762974e..99c847b421 100644 --- a/apps/cowswap-frontend/src/modules/hooksStore/dapps/AirdropHookApp/hook.tsx +++ b/apps/cowswap-frontend/src/modules/hooksStore/dapps/AirdropHookApp/hook.tsx @@ -1,4 +1,4 @@ -import { HookDappInternal, HookDappType } from 'modules/hooksStore/types/hooks' +import { HookDappInternal, HookDappType, HookDappWalletCompatibility } from 'modules/hooksStore/types/hooks' import airdropImage from './airdrop.svg' @@ -30,4 +30,5 @@ export const AIRDROP_HOOK_APP: HookDappInternal = { component: (props) => , version: '0.1.0', website: 'https://github.com/bleu/cow-airdrop-contract-deployer', + walletCompatibility: [HookDappWalletCompatibility.EOA, HookDappWalletCompatibility.SMART_CONTRACT], }