diff --git a/artifacts/tx-os/src/pages/protocol.tsx b/artifacts/tx-os/src/pages/protocol.tsx
index ca7ab2e3..efc72a6c 100644
--- a/artifacts/tx-os/src/pages/protocol.tsx
+++ b/artifacts/tx-os/src/pages/protocol.tsx
@@ -3316,7 +3316,7 @@ function RoomsDashboardView({
onClick={() => goTab(k.tab)}
className="bg-white rounded-2xl border border-slate-200 p-4 text-start hover:border-sky-300 hover:shadow-sm transition"
>
-
+
{k.value ?? "—"}
{k.label}
@@ -3327,32 +3327,36 @@ function RoomsDashboardView({
))}
-
-
-
- {t("protocol.roomsDash.nextBooking")}
-
+
{d?.nextBooking ? (
-
-
-
+
+
+
+
+ {t("protocol.roomsDash.nextBooking")}
+
+
{d.nextBooking.title}
-
-
+
+
{nameOf(d.nextBooking.roomNameAr, d.nextBooking.roomNameEn)}
{" · "}
{fmtNextTime(d.nextBooking.startsAt)}
-
+
-
) : (
-
- {stats.isLoading
- ? t("common.loading")
- : t("protocol.roomsDash.noUpcoming")}
+
+
+ {t("protocol.roomsDash.nextBooking")}
+
+ {stats.isLoading
+ ? t("common.loading")
+ : t("protocol.roomsDash.noUpcoming")}
+
)}