diff --git a/src/components/IIIFAuthentication.js b/src/components/IIIFAuthentication.js index ec5c32791..219275222 100644 --- a/src/components/IIIFAuthentication.js +++ b/src/components/IIIFAuthentication.js @@ -98,7 +98,7 @@ export function IIIFAuthentication({ ); }; - if (status === null) return (authServiceExternal) ? renderLoggingInToken() : renderLogin(); + if (status === null) return (!isInteractive) ? renderLoggingInToken() : renderLogin(); if (status === 'cookie') return renderLoggingInCookie(); if (status === 'token') return renderLoggingInToken(); if (status === 'failed') return renderFailure();