Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanta Kodama committed Jan 15, 2021
1 parent 6957e0c commit c2f27b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1.bug_report.yml
Expand Up @@ -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?
Expand Down
6 changes: 1 addition & 5 deletions test/integration/link-with-hash/test/index.test.js
Expand Up @@ -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
}
})
Expand Down

0 comments on commit c2f27b8

Please sign in to comment.