Merge branch 'develop' into feature/MED-129

This commit is contained in:
Danel Kungla
2025-09-24 15:00:27 +03:00
622 changed files with 19603 additions and 10824 deletions

View File

@@ -127,11 +127,16 @@ export default function CartServiceItem({
</span>
</TableCell>
</TableRow>
{isUnavailable && <TableRow>
<TableCell colSpan={8} className="text-destructive px-4 text-left sm:px-6">
<Trans i18nKey="booking:timeSlotUnavailable" />
</TableCell>
</TableRow>}
{isUnavailable && (
<TableRow>
<TableCell
colSpan={8}
className="text-destructive px-4 text-left sm:px-6"
>
<Trans i18nKey="booking:timeSlotUnavailable" />
</TableCell>
</TableRow>
)}
<EditCartServiceItemModal
item={editingItem}
onComplete={() => setEditingItem(null)}