Skip to content

Commit

Permalink
fix: disable claim button
Browse files Browse the repository at this point in the history
  • Loading branch information
Aerilym committed Jul 9, 2024
1 parent 97eef76 commit 007f7bc
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions apps/staking/app/mystakes/modules/ClaimTokensModule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ import { PresentIcon } from '@session/ui/icons/PresentIcon';

export default function ClaimTokensModule() {
return (
<Module
className="group items-center"
onClick={() => {
console.log('clicked claim');
}}
>
<ModuleContent className="flex h-full select-none flex-row items-center gap-2 align-middle font-bold">
<PresentIcon className="fill-session-text group-hover:fill-session-black h-6 w-6" />
<ModuleText className="h-8 text-3xl group-hover:text-black">Claim</ModuleText>
<Module className="items-center">
<ModuleContent className="flex h-full select-none flex-row items-center gap-2 align-middle font-bold hover:bg-inherit">
<PresentIcon className="fill-session-text group-hover:fill-session-black h-6 w-6 opacity-50" />
<ModuleText className="h-8 text-3xl opacity-50 group-hover:text-black">Claim</ModuleText>
</ModuleContent>
</Module>
);
Expand Down

0 comments on commit 007f7bc

Please sign in to comment.