Skip to content

Commit

Permalink
chore: auto format (prettier)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbnuqw committed Sep 3, 2024
1 parent b4a9043 commit cd79ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/tabs.fg.handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function onTabCreated(nativeTab: NativeTab, attached?: boolean): void {
tab.internal = tab.url.startsWith(ADDON_HOST)
if (tab.internal) tab.isGroup = Utils.isGroupUrl(tab.url)
tab.index = index
tab.parentId = Settings.state.tabsTree ? tab.openerTabId ?? NOID : NOID
tab.parentId = Settings.state.tabsTree ? (tab.openerTabId ?? NOID) : NOID
if (!tab.favIconUrl && !tab.internal && !tab.url.startsWith('a')) {
tab.reactive.favIconUrl = tab.favIconUrl = Favicons.getFavicon(tab.url)
}
Expand Down

0 comments on commit cd79ec2

Please sign in to comment.