Hi Leander,
I have some experience with PWA / SAML combination, have you tried setting a static start_url in ‘manifest-overrides.webmanifest’?
Your issue does not sound like mine, but the problem i had was that the loaded page (index3.html) was installed and this causes the app to skip the SAML authentication. My webmanifest override looked like this to get SAML to work:
{
"short_name": "---",
"name": "---",
"background_color": "#FFFFFF",
"display": "standalone",
"theme_color": "#222B53",
"start_url" : "./index.html"
}
After analysis by ourselves and Mendix support, the issue persisted and is due to Apple web-kit. We then tried with OIDC and since then, the issue no longer persisted.