Skip to content

Commit c4a139a

Browse files
committed
Make code prettier
1 parent d04605a commit c4a139a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/app/event-display/event-loader.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,8 +394,12 @@ export class EventLoader extends PhoenixLoader {
394394

395395
const file = await openFile(this.fileURL);
396396
const tree = await file.readObject(treeName);
397-
const existingBranches = tree.fBranches.arr.map((branch: any) => branch.fName);
398-
this.branches = this.branches.filter((branch: string) => existingBranches.includes(branch))
397+
const existingBranches = tree.fBranches.arr.map(
398+
(branch: any) => branch.fName
399+
);
400+
this.branches = this.branches.filter((branch: string) =>
401+
existingBranches.includes(branch)
402+
);
399403
this.entries = tree.fEntries;
400404

401405
// Use Promise.all and map to wait for all promises to resolve.

0 commit comments

Comments
 (0)