Skip to content

Commit

Permalink
Added semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorthiz committed Oct 12, 2024
1 parent 5eaf438 commit 0094514
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class AbstractExportedValueMapper<T> implements IExportedValueMapper<T> {
const isEnumValue = !!value.enumStringValue;
return isEnumValue
? this.visitEnum(value)
: this.visitPrimitive(value)
: this.visitPrimitive(value);
case ObjectType.Array:
return this.visitArray(value);
case ObjectType.TypedArray:
Expand Down

0 comments on commit 0094514

Please sign in to comment.