diff --git a/dotnet-authserver/src/TeacherIdentity.AuthServer/AuthenticationState.cs b/dotnet-authserver/src/TeacherIdentity.AuthServer/AuthenticationState.cs index 4b3310010..375dd09f6 100644 --- a/dotnet-authserver/src/TeacherIdentity.AuthServer/AuthenticationState.cs +++ b/dotnet-authserver/src/TeacherIdentity.AuthServer/AuthenticationState.cs @@ -629,7 +629,7 @@ public void OnSignedInUserProvided(User? user) user.EffectiveVerificationLevel != TrnVerificationLevel.Medium : null; HaveCompletedTrnLookup = user?.CompletedTrnLookup is not null; - TrnLookup = user?.CompletedTrnLookup is not null ? TrnLookupState.Complete : TrnLookupState.None; + TrnLookup = user?.CompletedTrnLookup is not null || user?.Trn is not null ? TrnLookupState.Complete : TrnLookupState.None; UserType = user?.UserType; StaffRoles = user?.StaffRoles; TrnLookupStatus = user?.TrnLookupStatus;