feat: iCal calendar feed (GRO-107) #116

Merged
groombook-engineer[bot] merged 11 commits from feat/gro-107-ical-feed into main 2026-03-27 02:37:07 +00:00
Showing only changes of commit f147dc3f89 - Show all commits
+1 -1
View File
@@ -6,7 +6,7 @@ interface Props {
staffName: string;
}
export function CalendarSyncSection({ staffId, staffName }: Props) {
export function CalendarSyncSection({ staffId }: Props) {
const [token, setToken] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
const [actionLoading, setActionLoading] = useState<"generate" | "revoke" | null>(null);