fix(web): portal header fixes (GRO-286) + password/retry fixes (GRO-287) #173

Merged
groombook-engineer[bot] merged 2 commits from fix/gro-286-portal-impersonation-headers into main 2026-03-30 13:04:47 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit fe9f1f8f78 - Show all commits
@@ -270,7 +270,6 @@ function ManagePets({ sessionId, readOnly }: { sessionId: string | null; readOnl
<PetForm
// eslint-disable-next-line @typescript-eslint/no-explicit-any
pet={(editingPet ?? undefined) as any}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
onSave={() => { setEditingPetId(null); setShowAddForm(false); }}
onCancel={() => { setEditingPetId(null); setShowAddForm(false); }}
/>
+1 -1
View File
@@ -1,4 +1,4 @@
import { useState, useEffect, useCallback, useRef } from "react";
import { useState, useEffect, useRef } from "react";
import { FileText, Share2, Calendar, Smile, Meh, ChevronRight, Loader2 } from "lucide-react";
type MoodKey = "calm" | "cooperative" | "anxious" | "wiggly";