- fixed cropped live feed and amended APIs for submission

This commit is contained in:
2025-11-10 11:55:15 +00:00
parent a734de6261
commit ddeedd2d72
7 changed files with 281 additions and 53 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=SightingAmmendA-lane-ids`);
const response = await fetch(`${CAM_BASE}/api/fetch-config?id=SightingAmmend-lane-ids`);
if (!response.ok) throw new Error("Canot get Lane Ids");
return response.json();
};