Skip to content

Commit

Permalink
bug: session state logs (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophia-bq authored Nov 27, 2024
1 parent 5d57d86 commit ee276e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/lib/session_state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class SessionStateField<Type> {
}

toString() {
return `${this.pristineValue ? this.pristineValue : "(blank)"} => ${this.value ? this.value : "(blank)"}`;
return `${this.pristineValue ?? "(blank)"} => ${this.value ?? "(blank)"}`;
}
}

Expand Down

0 comments on commit ee276e2

Please sign in to comment.