Skip to content

Commit ac3569b

Browse files
removed duplicate unconfirmed status on mobile view (calcom#1119)
1 parent 0ee5236 commit ac3569b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/booking/BookingListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function BookingListItem(booking: BookingItem) {
9898
{booking.eventType?.team && <strong>{booking.eventType.team.name}: </strong>}
9999
{booking.title}
100100
{!booking.confirmed && !booking.rejected && (
101-
<span className="ml-2 inline-flex items-center px-1.5 py-0.5 rounded-sm text-xs font-medium bg-yellow-100 text-yellow-800">
101+
<span className="ml-2 hidden sm:inline-flex items-center px-1.5 py-0.5 rounded-sm text-xs font-medium bg-yellow-100 text-yellow-800">
102102
{t("unconfirmed")}
103103
</span>
104104
)}

0 commit comments

Comments
 (0)