Skip to content

Commit

Permalink
Fix linter on document example
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Nov 25, 2024
1 parent 8782017 commit d995f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documents/src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ export class ExampleDoc extends YDocument<ExampleDocChange> {
? data
? JSON.parse(data)
: { x: 0, y: 0 }
: data ?? '';
: (data ?? '');
}

/**
Expand Down

0 comments on commit d995f7a

Please sign in to comment.