Skip to content

Commit

Permalink
chore: fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Oct 10, 2023
1 parent ace015d commit 8db9f71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/octochemdb/src/massSpectra.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ export async function massSpectra(options = {}) {
...options,
url: route.url,
link: route.link,
}).then(entries => entries.map(entry => ({ ...entry, database: route.name }))),
}).then((entries) =>
entries.map((entry) => ({ ...entry, database: route.name })),
),
);
}
}
Expand Down

0 comments on commit 8db9f71

Please sign in to comment.