From 6801c95e6a86366b7b70215c58c7f332d953558d Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 18 Sep 2023 13:03:33 -0400 Subject: [PATCH] Fix app selection prompt appearing even in the app Turns out, I just got the name of this URL parameter wrong --- src/room/AppSelectionModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/AppSelectionModal.tsx b/src/room/AppSelectionModal.tsx index 8d4a05f8..3480e9d8 100644 --- a/src/room/AppSelectionModal.tsx +++ b/src/room/AppSelectionModal.tsx @@ -55,7 +55,7 @@ export const AppSelectionModal: FC = ({ roomId }) => { // room in question, and it prevents this app selection prompt from being // shown a second time. url.hash = editFragmentQuery(url.hash, (params) => { - params.set("isEmbedded", ""); + params.set("embed", ""); return params; });