Skip to content

Commit

Permalink
Merge pull request #166 from chaeyoungwon/feature/24threcruit
Browse files Browse the repository at this point in the history
Fix: 공연중->예매중 텍스트 변경
  • Loading branch information
chaeyoungwon authored Feb 23, 2025
2 parents fecf539 + e72863c commit 3ccae4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/performance/TicketList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const TicektList = () => {
>
{performance.status === 'OPEN' && (
<div className="flex items-center justify-center rounded-[20px] z-30 text-center absolute top-[15px] left-[13px] w-[42px] h-[23px] bg-primary-40 text-gray-0 text-xs font-medium">
공연중
예매중
</div>
)}
<Link href={`/ticket/${performance.ticketInfoId}`} className="block">
Expand Down
2 changes: 1 addition & 1 deletion components/ticket/DesktopTicketList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const DesktopTicketList = ({
<div key={show.ticketInfoId} className="relative w-[184px] block">
{show.status === 'OPEN' && (
<div className="flex items-center justify-center rounded-[20px] z-30 text-center absolute top-[15px] left-[13px] w-[42px] h-[23px] bg-primary-40 text-gray-0 text-xs font-medium rounded-5">
공연중
예매중
</div>
)}
<div className="flex items-start relative w-[184px] h-[257px] rounded-lg overflow-hidden cursor-pointer">
Expand Down
2 changes: 1 addition & 1 deletion components/ticket/WidePlaylistItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const WidePlaylistItem = ({ show, id }: { show: Show; id: string }) => {
<div className="relative w-[128px] h-[184px] overflow-hidden rounded-l-[10px]">
{show.status === 'OPEN' && (
<div className="flex items-center justify-center rounded-[20px] z-30 text-center absolute top-[5px] left-[5px] w-[42px] h-[23px] bg-primary-40 text-gray-0 text-xs font-medium rounded-5">
공연중
예매중
</div>
)}

Expand Down

0 comments on commit 3ccae4a

Please sign in to comment.