- added store and forward

- amended sighting ammend endpoint
This commit is contained in:
2025-11-11 10:43:14 +00:00
parent cac9a2167d
commit f35e2f9fb5
6 changed files with 71 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ const updateBOF2LaneId = async (data: OptionalBOF2LaneIDs) => {
};
const getBOF2LaneId = async () => {
const response = await fetch(`${CAM_BASE}/api/fetch-config?id=SightingAmmend-lane-ids`);
const response = await fetch(`${CAM_BASE}/api/fetch-config?id=SightingAmmendA-lane-ids`);
if (!response.ok) throw new Error("Canot get Lane Ids");
return response.json();
};