Skip to content

Commit 58dc28b

Browse files
committed
fix linting
1 parent 23bc37b commit 58dc28b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

popup/popup.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ const renderTabList = (tabs, groups) => {
3737

3838
// Render pinned tabs first as a virtual group
3939
if (pinnedTabs.length > 0) {
40-
createGroupHeader({ id: 'pinned', title: 'Pinned', color: 'grey' }, pinnedTabs.length, popupList);
40+
createGroupHeader(
41+
{ id: 'pinned', title: 'Pinned', color: 'grey' },
42+
pinnedTabs.length,
43+
popupList,
44+
);
4145
const pinnedContainer = createGroupContainer('pinned', popupList);
4246
for (const tab of pinnedTabs) {
4347
createTabItem(tab, pinnedContainer, 'pinned');

0 commit comments

Comments
 (0)