removed duplicate unconfirmed status on mobile view (#1119)
This commit is contained in:
parent
0ee523643d
commit
ac3569b78e
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ function BookingListItem(booking: BookingItem) {
|
||||||
{booking.eventType?.team && <strong>{booking.eventType.team.name}: </strong>}
|
{booking.eventType?.team && <strong>{booking.eventType.team.name}: </strong>}
|
||||||
{booking.title}
|
{booking.title}
|
||||||
{!booking.confirmed && !booking.rejected && (
|
{!booking.confirmed && !booking.rejected && (
|
||||||
<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">
|
<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">
|
||||||
{t("unconfirmed")}
|
{t("unconfirmed")}
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue