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

This commit is contained in:
csawatzky 2025-10-15 14:34:05 -06:00
parent 3c418343d0
commit 2a66ebfca9

View file

@ -90,8 +90,7 @@ export default function InteractionProvider(props: PropsWithChildren<Props>) {
) => {
const view = otherTeam ? otherTeam : as
let url = pondURL(
"/interactions/forComponents/" +
"?componentIds=" +
"/interactions/forComponents?componentIds=" +
fullComponentLocations.toString() +
(view ? "&as=" + view : "")
)