From 558c51b3577aef41ccd1269d40b8b27834d18178 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Sat, 30 May 2026 04:11:24 +0000 Subject: [PATCH] fix: correct behavioral alert severity to low (matches TC-API-3.23 expectation) Co-Authored-By: Paperclip --- packages/db/src/seed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/db/src/seed.ts b/packages/db/src/seed.ts index 7460870..985ecf0 100644 --- a/packages/db/src/seed.ts +++ b/packages/db/src/seed.ts @@ -270,7 +270,7 @@ const medicalAlertPool: MedicalAlert[] = [ { id: "", type: "other", description: "Seizure history — avoid flashing lights", severity: "high" }, { id: "", type: "other", description: "Luxating patella — short walks only", severity: "medium" }, { id: "", type: "other", description: "Ear infections — dry thoroughly after bath", severity: "low" }, - { id: "", type: "behavioral", description: "Anxiety — calm environment preferred", severity: "medium" }, + { id: "", type: "behavioral", description: "Anxiety — calm environment preferred", severity: "low" }, { id: "", type: "behavioral", description: "Fear-based aggression — approach with caution", severity: "high" }, { id: "", type: "skin", description: "Contact dermatitis — avoid harsh chemicals", severity: "medium" }, { id: "", type: "skin", description: "Hot spots — monitor and report any worsening", severity: "high" },