using this code
async function popupLogin() {
let session = await solid.auth.currentSession();
let popupUri = 'https://solid.community/common/popup.html';
if (!session)
session = await solid.auth.popupLogin({ popupUri });
}
in this module https://github.com/scenaristeur/solidash/blob/master/js/modules/solid-auth.js does not give me the page for “Trusted Apps” when I click on “login button”.
I use a copy of solid-auth-client.bundle.js found in “node_modules/solid-auth-client/dist-lib”
Do you have a idea why I don’t have the “trusted app” window ?