Skip to content

Commit

Permalink
COLUMBIA: render logging in when probe service is any non-interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
barmintor committed Feb 12, 2025
1 parent f6209f2 commit c15fd49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/IIIFAuthentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit c15fd49

Please sign in to comment.