Fix app selection prompt appearing even in the app

Turns out, I just got the name of this URL parameter wrong
This commit is contained in:
Robin
2023-09-18 13:03:33 -04:00
parent f3e8ee6913
commit 6801c95e6a

View File

@@ -55,7 +55,7 @@ export const AppSelectionModal: FC<Props> = ({ 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;
});