Skip to content

Commit

Permalink
Eliminate redundant destructuring alias
Browse files Browse the repository at this point in the history
  • Loading branch information
eyelidlessness committed May 20, 2024
1 parent 716ab51 commit 1ec7793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scenario/src/answer/UntypedAnswer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class UntypedAnswer extends ComparableAnswer {
}

get stringValue(): string {
const { unknownValue: unknownValue } = this;
const { unknownValue } = this;

if (unknownValue instanceof ComparableAnswer) {
return unknownValue.stringValue;
Expand Down

0 comments on commit 1ec7793

Please sign in to comment.