Issue response: do not encode query parameters (#25180)

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons
2025-02-19 18:22:46 +00:00
committed by GitHub
parent 5f6d049751
commit c9bd44f983
+1 -1
View File
@@ -96,7 +96,7 @@ async function main() {
},
}));
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${encodeURIComponent(searchQuery)}`;
const issuesUrl = `${GITHUB_ISSUES_URL}?q=${searchQuery}`;
blocks.push({
type: "section",