Skip to content

Commit

Permalink
remove not needed utils
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Feb 22, 2023
1 parent a793ef8 commit a57dc71
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,7 @@ export class CompositionsMain {

if (!maybeFiles) return [];
const [, files] = maybeFiles;
return files
.map((file) => {
return this.computeCompositions(component, file);
})
.flat();
return files.map((file) => this.computeCompositions(component, file)).flat();
}

getCompositionFilePattern() {
Expand Down

0 comments on commit a57dc71

Please sign in to comment.