fix core-server URL in prod

This commit is contained in:
PxlLoewe
2025-07-04 20:43:14 -07:00
parent 075d34a01c
commit 80d2704852
7 changed files with 6 additions and 12 deletions

View File

@@ -46,11 +46,6 @@ export const MissionForm = () => {
refetchInterval: 10000,
});
const { data: stations } = useQuery({
queryKey: ["stations"],
queryFn: () => getStationsAPI(),
});
const createMissionMutation = useMutation({
mutationFn: createMissionAPI,
mutationKey: ["missions"],
@@ -292,6 +287,7 @@ export const MissionForm = () => {
form.setValue("missionKeywordAbbreviation", "VL_S");
form.setValue("hpgMissionString", "Verlegung:4_1_1_1-4_1");
} else {
form.setValue("missionKeywordCategory", "V_VERLEGUNG");
form.setValue("missionKeywordAbbreviation", null as any);
form.setValue("hpgMissionString", null);
}