From 2a66ebfca9a7df75652cbe5811a3b6ebf40f87aa Mon Sep 17 00:00:00 2001 From: csawatzky Date: Wed, 15 Oct 2025 14:34:05 -0600 Subject: [PATCH] hotfix to remove an extra slash in an api call that was causing a re-direct which worked fine on desktop but iOS devices blocked it --- src/providers/pond/interactionsAPI.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/providers/pond/interactionsAPI.tsx b/src/providers/pond/interactionsAPI.tsx index bf9da13..26afb1e 100644 --- a/src/providers/pond/interactionsAPI.tsx +++ b/src/providers/pond/interactionsAPI.tsx @@ -90,8 +90,7 @@ export default function InteractionProvider(props: PropsWithChildren) { ) => { const view = otherTeam ? otherTeam : as let url = pondURL( - "/interactions/forComponents/" + - "?componentIds=" + + "/interactions/forComponents?componentIds=" + fullComponentLocations.toString() + (view ? "&as=" + view : "") )