feat: appointment confirmation and cancellation (GH #98) #104

Merged
groombook-engineer[bot] merged 2 commits from feat/appointment-confirmation-gh98 into main 2026-03-24 21:15:07 +00:00
Showing only changes of commit f3923ddf54 - Show all commits
-1
View File
@@ -99,7 +99,6 @@ export function buildReminderEmail(
const time = formatDateTime(data.startTime);
const groomer = data.groomerName ? ` with ${data.groomerName}` : "";
const when = hoursAhead >= 24 ? `tomorrow` : `in ${hoursAhead} hours`;
const baseUrl = process.env.APP_URL ?? "http://localhost:5173";
const apiUrl = process.env.API_URL ?? "http://localhost:3000";
const confirmUrl = confirmationToken ? `${apiUrl}/api/book/confirm/${confirmationToken}` : null;