Skip to content

Commit 96a6e7d

Browse files
committed
fix: lint 깨짐 수정
- lf 방식으로 활용하도록 수정
1 parent 66e0d6d commit 96a6e7d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

frontend/src/features/room/lobby/components/MiniGameSection/MiniGameSection.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ export const MiniGameSection = ({ selectedMiniGames, handleMiniGameClick }: Prop
5050
miniGames
5151
?.filter((miniGame) => !HIDDEN_MINI_GAMES.includes(miniGame))
5252
.map((miniGame) => (
53-
<GameActionButton
54-
key={miniGame}
55-
isSelected={selectedMiniGames.includes(miniGame)}
56-
isDisabled={playerType === 'GUEST'}
57-
gameName={MINI_GAME_NAME_MAP[miniGame]}
58-
description={MINI_GAME_DESCRIPTION_MAP[miniGame]}
59-
onClick={() => handleClick(miniGame)}
60-
icon={<S.Icon src={MINI_GAME_ICON_MAP[miniGame]} alt={miniGame} />}
61-
orderNumber={selectedMiniGames.indexOf(miniGame) + 1}
62-
data-testid={`game-action-${miniGame}`}
63-
/>
64-
))
53+
<GameActionButton
54+
key={miniGame}
55+
isSelected={selectedMiniGames.includes(miniGame)}
56+
isDisabled={playerType === 'GUEST'}
57+
gameName={MINI_GAME_NAME_MAP[miniGame]}
58+
description={MINI_GAME_DESCRIPTION_MAP[miniGame]}
59+
onClick={() => handleClick(miniGame)}
60+
icon={<S.Icon src={MINI_GAME_ICON_MAP[miniGame]} alt={miniGame} />}
61+
orderNumber={selectedMiniGames.indexOf(miniGame) + 1}
62+
data-testid={`game-action-${miniGame}`}
63+
/>
64+
))
6565
)}
6666
</S.Wrapper>
6767
</>

0 commit comments

Comments
 (0)