diff --git a/src/components/fortune-wheel/FortuneWheelView.tsx b/src/components/fortune-wheel/FortuneWheelView.tsx index c15b10d..7b4d508 100644 --- a/src/components/fortune-wheel/FortuneWheelView.tsx +++ b/src/components/fortune-wheel/FortuneWheelView.tsx @@ -206,7 +206,7 @@ export const FortuneWheelView: FC<{}> = () => const canSpin = ((freeSpins + extraSpins) > 0) && !isSpinning && (prizes.length > 0); return ( - + setIsVisible(false) } />
@@ -237,7 +237,7 @@ export const FortuneWheelView: FC<{}> = () => key={ prize.id } className="absolute left-1/2 top-1/2" style={ { transform: `rotate(${ centerAngle }deg) translateY(-${ ICON_RADIUS }px) rotate(-${ centerAngle }deg)` } }> -
+
{ renderPrizeIcon(prize) }
);