- fixed endpoint typo

This commit is contained in:
2025-11-04 11:49:40 +00:00
parent 18e4d1dcff
commit f6c1ea2b1c

View File

@@ -17,7 +17,7 @@ const getAllBlackboardData = async () => {
};
const viewBlackboardData = async (options: CameraBlackBoardOptions) => {
const response = await fetch(`/${camBase}api/blackboard`, {
const response = await fetch(`${camBase}/api/blackboard`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(options),