diff --git a/packages/extension-koni-ui/src/Popup/Home/Airdrop/AirdropDetail/index.tsx b/packages/extension-koni-ui/src/Popup/Home/Airdrop/AirdropDetail/index.tsx index c2542e89f8..18d979470e 100644 --- a/packages/extension-koni-ui/src/Popup/Home/Airdrop/AirdropDetail/index.tsx +++ b/packages/extension-koni-ui/src/Popup/Home/Airdrop/AirdropDetail/index.tsx @@ -152,8 +152,9 @@ const Component: React.FC = ({ className, currentAirdrop }: Props) => { const buttonType = (() => { const now = Date.now(); const shouldCheck = currentAirdrop?.start_claim && new Date(currentAirdrop?.start_claim).getTime() < now; + const endCampaign = currentAirdrop?.end && new Date(currentAirdrop?.end).getTime() < now; - if (!shouldCheck) { + if (!shouldCheck && !endCampaign) { return buttonTypeConst.COMING_SOON; }