Skip to content

Commit

Permalink
Remove uri encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
ingeniumed committed Feb 19, 2025
1 parent b967295 commit 9c64a35
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/scripts/generate-playground-blueprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ async function run( { github, context } ) {

const defaultSchema = generateWordpressPlaygroundBlueprint( context.issue.number );

const url = `https://wordpress-playground.atomicsites.blog/#${ encodeURIComponent(
JSON.stringify( defaultSchema )
) }`;
const url = `https://wordpress-playground.atomicsites.blog/#${ JSON.stringify( defaultSchema ) }`;

const body = `
## Test using WordPress Playground
Expand Down

0 comments on commit 9c64a35

Please sign in to comment.