Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ function start() {
throw new Error('Unable to locate new issue link');
}

const newIssueParams = `?title=[Legitimate%20Site%20Blocked]%20${encodeURIComponent(
suspectHostnameUnicode,
)}&body=${encodeURIComponent(toUnicode(suspectHrefUnicode))}`;
const newIssueParams = `?template=02-blocklist-removal.yaml&domains=${encodeURIComponent(
toUnicode(suspectHrefUnicode),
)}`;

newIssueLink.addEventListener('click', async () => {
window.location.href = `${newIssueUrl}${newIssueParams}`;
Expand Down