Skip to content

Commit

Permalink
lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 27, 2023
1 parent d37ef44 commit f6c9d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/src/test-support/get-page-title.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function getPageTitle(doc: Document) {
// In Fastboot context we get 2 title elements if we don't remove one from app/index.html
// In real world applications, it is mandatory to remove <title> from app/index.html
// We are keeping both for sake for testing browser and fastboot scenarios
let element = [
const element = [
...(doc || window.document).querySelectorAll('head title'),
].pop();

Expand Down

0 comments on commit f6c9d07

Please sign in to comment.