From f5553892b45a0a4481ecb8d56537204870af6be0 Mon Sep 17 00:00:00 2001 From: LI-NA Date: Sat, 27 Apr 2024 00:21:04 +0900 Subject: [PATCH] fix(map): Fix the circle color --- components/map-stage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/map-stage.tsx b/components/map-stage.tsx index 659ec2b..eaf0821 100644 --- a/components/map-stage.tsx +++ b/components/map-stage.tsx @@ -204,9 +204,9 @@ const MapStage = ({ map, myPositions }: { map: MapType; myPositions: ScreenshotV x={vector.x} y={vector.y} radius={5 / stageScale} - // fill will be transparent by 10% - fill={`rgba(255, 0, 0, ${Math.max(0, 1 - index * 0.1)})`} + fill="red" stroke="black" + opacity={1 - index * 0.1} shadowBlur={10} /> ))}