Use explicit boolean flags

This commit is contained in:
Robin 2023-09-19 07:12:27 -04:00
parent 63f4086f98
commit cc1f14bef3

View File

@ -54,7 +54,7 @@ export const AppSelectionModal: FC<Props> = ({ roomId }) => {
// time within the app, and to keep the user confined to the current room
url.hash = editFragmentQuery(url.hash, (params) => {
params.set("appPrompt", "false");
params.set("confineToRoom", "");
params.set("confineToRoom", "true");
return params;
});