File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
app/(authenticated)/users/[id]/buttons Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,11 @@ export default function ValidateSpinButton({
4747 disabled = { ! isEligible }
4848 onClick = { validateSpinWheel }
4949 >
50- < FerrisWheel size = { 16 } />
51- Validate Spin the Wheel ({ spinWheelData ?. signatures . length ?? 0 } /
52- { SPIN_WHEEL_MAXIMUM } )
50+ < FerrisWheel size = { 16 } /> (
51+ { spinWheelData ?. redeemed
52+ ? "Already redeemed"
53+ : `Validate Spin the Wheel ${ spinWheelData ?. signatures . length ?? 0 } / ${ SPIN_WHEEL_MAXIMUM } ` }
54+ )
5355 </ button >
5456 ) ;
5557}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function AchievementTile({
1818 return (
1919 < >
2020 < div
21- className = { `size-30 rounded-full shadow-md cursor-pointer ${ achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25" } ` }
21+ className = { `size-20 rounded-full shadow-md cursor-pointer ${ achieved ? "bg-white" : "bg-gray-200 grayscale opacity-25" } ` }
2222 onClick = { ( ) => setIsOpen ( true ) }
2323 >
2424 < Image
You can’t perform that action at this time.
0 commit comments