From 24c157747c93e944678ef7c399d24a96fcc917f9 Mon Sep 17 00:00:00 2001 From: csawatzky Date: Tue, 17 Feb 2026 16:40:23 -0600 Subject: [PATCH] removed a slash before the ? for the url params that may have been the cause of iOS devices using safari to trigger an error when calling updatedComponentPreferences in the binAPI --- src/providers/pond/binAPI.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/pond/binAPI.tsx b/src/providers/pond/binAPI.tsx index f4ac73f..def6699 100644 --- a/src/providers/pond/binAPI.tsx +++ b/src/providers/pond/binAPI.tsx @@ -290,7 +290,7 @@ export default function BinProvider(props: PropsWithChildren) { ) => { const view = otherTeam ? otherTeam : as let url = "/bins/" + bin + "/updateComponent/" + component + "/preferences"; - if (view) url = url + "/?as=" + view; + if (view) url = url + "?as=" + view; interface request { preferences: Object; }