chore: trigger CI rebuild for web Docker image (GRO-206)

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
groombook-ci[bot]
2026-03-29 21:59:03 +00:00
parent 9724327559
commit 7a4be8a924
+1 -1
View File
@@ -7,7 +7,7 @@ interface StaffForm {
role: "groomer" | "receptionist" | "manager";
}
const EMPTY_FORM: StaffForm = { name: "", email: "", role: "groomer" };
const EMPTY_FORM: StaffForm = { name: "", email: "", role: "groomer" }; // GRO-206 rebuild trigger
export function StaffPage() {
const [staff, setStaff] = useState<Staff[]>([]);