Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Osbourne committed Nov 4, 2024
1 parent f768314 commit 21d66cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions special-pages/pages/new-tab/app/customizer/Customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ export function useContextMenu () {
const items = getItems()
/** @type {VisibilityMenuItem[]} */
const simplified = items
.filter(x => x.id !== "debug")
.filter(x => x.id !== 'debug')
.map(item => {
return {
id: item.id,
title: item.title
}
});
})
messaging.contextMenu({ visibilityMenuItems: simplified })
}
document.body.addEventListener('contextmenu', handler)
Expand Down

0 comments on commit 21d66cf

Please sign in to comment.