From c15fd491b4192a8bf72ca8b67ca260a7ccf3aa03 Mon Sep 17 00:00:00 2001 From: Benjamin Armintor Date: Wed, 12 Feb 2025 18:13:25 -0500 Subject: [PATCH] COLUMBIA: render logging in when probe service is any non-interactive --- src/components/IIIFAuthentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();