From 18e4d1dcffeffcd98b9ccc60f19a1196f9415d2b Mon Sep 17 00:00:00 2001 From: Toba Ojo Date: Tue, 4 Nov 2025 11:45:54 +0000 Subject: [PATCH 1/2] - quick fix for bof2 --- src/components/SettingForms/Channel1-JSON/ChannelFields.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SettingForms/Channel1-JSON/ChannelFields.tsx b/src/components/SettingForms/Channel1-JSON/ChannelFields.tsx index 1c8dbaa..24cde7c 100644 --- a/src/components/SettingForms/Channel1-JSON/ChannelFields.tsx +++ b/src/components/SettingForms/Channel1-JSON/ChannelFields.tsx @@ -173,8 +173,8 @@ const ChannelFields = ({ touched, isSubmitting, format }: ChannelFieldsProps) => className="p-2 border border-gray-400 rounded-lg text-white bg-[#253445] w-full md:w-60" > - - + + From f6c1ea2b1ce43b80c22fede90cec1d53d83e79da Mon Sep 17 00:00:00 2001 From: Toba Ojo Date: Tue, 4 Nov 2025 11:49:40 +0000 Subject: [PATCH 2/2] - fixed endpoint typo --- src/hooks/useCameraBlackboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useCameraBlackboard.ts b/src/hooks/useCameraBlackboard.ts index c7ec05c..6c31236 100644 --- a/src/hooks/useCameraBlackboard.ts +++ b/src/hooks/useCameraBlackboard.ts @@ -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),