diff --git a/.github/ISSUE_TEMPLATE/1.bug_report.yml b/.github/ISSUE_TEMPLATE/1.bug_report.yml index 7bc9dedbb4fd017..d6b3957f5a83b31 100644 --- a/.github/ISSUE_TEMPLATE/1.bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1.bug_report.yml @@ -12,10 +12,10 @@ inputs: value: If you leave out sections there is a high likelihood it will be moved to the GitHub Discussions "Help" section. - type: description attributes: - value: "Please first verify if your issue exists in the Next.js canary release line: `npm install next@canary`." + value: 'Please first verify if your issue exists in the Next.js canary release line: `npm install next@canary`.' - type: description attributes: - value: "next@canary is the beta version of Next.js. It includes all features and fixes that are pending to land on the stable release line." + value: 'next@canary is the beta version of Next.js. It includes all features and fixes that are pending to land on the stable release line.' - type: input attributes: label: What version of Next.js are you using? diff --git a/test/integration/link-with-hash/test/index.test.js b/test/integration/link-with-hash/test/index.test.js index c492c382c683db9..365cade8ad9bbf0 100644 --- a/test/integration/link-with-hash/test/index.test.js +++ b/test/integration/link-with-hash/test/index.test.js @@ -21,11 +21,7 @@ const runTests = () => { const browserLogs = await browser.log('browser') let found = false browserLogs.forEach((log) => { - if ( - log.message.includes( - 'Warning: Prop' - ) - ) { + if (log.message.includes('Warning: Prop')) { found = true } })