fix: check for active question properly

This commit is contained in:
Anna 2024-01-12 19:27:02 -05:00
parent d03da2b2dd
commit 8824139295
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ internal class QuestionManager : IDisposable, IReadOnlyList<IQuestion> {
return;
}
var active = this.FirstOrDefault(q => q.Active);
var active = this.Current;
if (active is not BasicQuestion) {
return;
}