Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed Dec 7, 2023
1 parent bc44297 commit 8c8a2c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/reservation/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ReservationPage = ({
</p>

<div style={{marginBottom: 24}}>
<h4>장소 예약 (${placeReservations.length})</h4>
<h4>장소 예약 ({placeReservations.length})</h4>
{
placeReservations.length ?
<PlaceReservationWaitTable
Expand All @@ -39,7 +39,7 @@ const ReservationPage = ({
</div>

<div style={{marginBottom: 24}}>
<h4>장비 예약 (${equipReservations.length})</h4>
<h4>장비 예약 ({equipReservations.length})</h4>
{
equipReservations.length ?
<EquipmentReservationTable
Expand Down

0 comments on commit 8c8a2c8

Please sign in to comment.