Skip to content

Commit d8910be

Browse files
committed
npm run pretty
1 parent 9cc475f commit d8910be

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/zen/split-view/ZenViewSplitter.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ class ZenSplitViewLinkDrop {
153153
const URL_TYPES = ['text/uri-list', 'text/x-moz-url', 'text/plain'];
154154

155155
let fixupFlags =
156-
Ci.nsIURIFixup.FIXUP_FLAG_FIX_SCHEME_TYPOS |
157-
Ci.nsIURIFixup.FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP;
156+
Ci.nsIURIFixup.FIXUP_FLAG_FIX_SCHEME_TYPOS | Ci.nsIURIFixup.FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP;
158157

159158
const matchedType = URL_TYPES.find((type) => {
160159
const raw = dt.getData(type);
@@ -300,7 +299,9 @@ class ZenSplitViewLinkDrop {
300299
const group = this.#zenViewSplitter._data[groupIndex];
301300

302301
if (group.tabs.length >= this.#zenViewSplitter.MAX_TABS) {
303-
console.warn(`Cannot add tab to split, MAX_TABS (${this.#zenViewSplitter.MAX_TABS}) reached.`);
302+
console.warn(
303+
`Cannot add tab to split, MAX_TABS (${this.#zenViewSplitter.MAX_TABS}) reached.`
304+
);
304305
return;
305306
}
306307

0 commit comments

Comments
 (0)