diff --git a/packages/features/bookings/Booker/components/Header.tsx b/packages/features/bookings/Booker/components/Header.tsx
index bf03708908..24644cb794 100644
--- a/packages/features/bookings/Booker/components/Header.tsx
+++ b/packages/features/bookings/Booker/components/Header.tsx
@@ -179,17 +179,32 @@ const LayoutToggle = ({
return [
{
value: BookerLayouts.MONTH_VIEW,
- label: ,
+ label: (
+ <>
+
+ ${t("switch_monthly")}
+ >
+ ),
tooltip: t("switch_monthly"),
},
{
value: BookerLayouts.WEEK_VIEW,
- label: ,
+ label: (
+ <>
+
+ ${t("switch_weekly")}
+ >
+ ),
tooltip: t("switch_weekly"),
},
{
value: BookerLayouts.COLUMN_VIEW,
- label: ,
+ label: (
+ <>
+
+ ${t("switch_columnview")}
+ >
+ ),
tooltip: t("switch_columnview"),
},
].filter((layout) => enabledLayouts?.includes(layout.value as BookerLayouts));