Skip to content

Commit

Permalink
Fix playground
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed May 10, 2024
1 parent a995dc9 commit 85e3529
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/static/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ async function handleMetaMessage() {

return {
type: "meta",
supportInfo: structuredClone(supportInfo),
// eslint-disable-next-line unicorn/prefer-structured-clone
supportInfo: JSON.parse(JSON.stringify(supportInfo)),
version: prettier.version,
};
}
Expand Down

0 comments on commit 85e3529

Please sign in to comment.