Skip to content

Commit

Permalink
Merge pull request #422 from sparcs-kaist/fix/space
Browse files Browse the repository at this point in the history
Fix/space
  • Loading branch information
minjoo0729 authored Oct 31, 2023
2 parents ed76314 + fdc1400 commit 9677e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/components/molecules/VoteParticipate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const VoteParticipate: React.FC<Props> = ({ voted, total }) => {
const participantInfo = useMemo(
() =>
hover
? `투표 참여자 ${voted}명 /투표 대상자 ${total}명`
? `투표 참여자 ${voted}명 / 투표 대상자 ${total}명`
: `${voted}/${total}`,
[hover],
);
Expand Down

0 comments on commit 9677e87

Please sign in to comment.