- 3.1 currency: replace hardcoded $ with AED <Money/> in item & job-card price cells - 5.1 calendar: /calendars now renders the month calendar (was redirect to list) - 7.2 nav: remove dead Time Clocks / Time Sheets links (no routes, 404) - 5.4 check-in: enforce required department at schema level - 5.6 payments received: add invoice picker so the invoice is marked Paid - 5.2 share link: forward ws workspace param from the public inspection page Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
"use client"
|
|
|
|
import { AppointmentsCalendarView } from "@/modules/appointments/appointments-calendar-view"
|
|
|
|
export default function CalendarsPage() {
|
|
return (
|
|
<div className="space-y-4 p-4">
|
|
<h1 className="text-xl font-semibold">Calendar</h1>
|
|
<AppointmentsCalendarView />
|
|
</div>
|
|
)
|
|
}
|