Skip to content

Commit

Permalink
chore: 필요없는 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj2713 committed Aug 15, 2024
1 parent af62ad3 commit 26afa9b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion client/src/features/CasperCustom/Battery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export function Battery({ applyCount }: BatteryProps) {
const [batteryApplyArray, setBatteryApplyArray] = useState<boolean[]>(batteryArray);

useEffect(() => {
// TODO: 응모 횟수 받아와야함
const newBatteryApplyArray = batteryApplyArray.map((_, index) => index < applyCount);
setBatteryApplyArray(newBatteryApplyArray);
}, [applyCount]);
Expand Down

0 comments on commit 26afa9b

Please sign in to comment.