From 70d3b8db0c8f5429ff2861bccc813e3fe5681075 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:54:00 -0700 Subject: [PATCH] station fix --- .../app/_components/customToasts/StationStatusToast.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/dispatch/app/_components/customToasts/StationStatusToast.tsx b/apps/dispatch/app/_components/customToasts/StationStatusToast.tsx index a6891d25..7c790480 100644 --- a/apps/dispatch/app/_components/customToasts/StationStatusToast.tsx +++ b/apps/dispatch/app/_components/customToasts/StationStatusToast.tsx @@ -10,8 +10,9 @@ import { useEffect, useRef } from "react"; import { Toast, toast } from "react-hot-toast"; export const QUICK_RESPONSE: Record = { - "5": ["J", "c"], - "0": ["J", "c"], + "5": ["J", "o"], + "9": ["u", "o"], + "0": ["J"], }; export const StatusToast = ({ event, t }: { event: StationStatus; t: Toast }) => {