-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84c2c8f
commit 6c46eaa
Showing
5 changed files
with
27 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# playroom | ||
|
||
## 0.28.2 | ||
|
||
### Patch Changes | ||
|
||
- 8030325: Update all dependencies | ||
- 8030325: Fix error message on gutter marker tooltip | ||
|
||
Playroom wraps the code in a Fragment to compile it and then removes it from the error message displayed as a tooltip on the gutter marker if it fails to compile. | ||
|
||
The logic has been improved to remove the first occurence of an opening `<React.Fragment>` and the last occurence of `</React.Fragment>`. | ||
|
||
Errors should no longer incorrectly have a stray closing fragment: | ||
|
||
```diff | ||
"unknown: Expected corresponding JSX closing tag for <Boxerror>. (3:0) | ||
|
||
1 | <Boxerror> | ||
2 | ... | ||
-> 3 | </Box></React.Fragment> | ||
+> 3 | </Box> | ||
| ^" | ||
``` | ||
|
||
- cbcf1cf: Update dependencies (and move to pnpm internally) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters