diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2022-06-26 20:57:06 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2022-06-26 20:57:06 -0300 |
commit | 08b700bb14e5e12c1dff283e2eef729816a97f15 (patch) | |
tree | 0494ff87d7ede3e0d7f561063c08c74011204486 /src/page/album-commentary.js | |
parent | c6e9aba1f6d1239b3d884c2749d1f0d15c7662a1 (diff) |
lots of fixes from eslint
Diffstat (limited to 'src/page/album-commentary.js')
-rw-r--r-- | src/page/album-commentary.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/page/album-commentary.js b/src/page/album-commentary.js index 8a5ba069..255a6584 100644 --- a/src/page/album-commentary.js +++ b/src/page/album-commentary.js @@ -18,9 +18,7 @@ export function targets({wikiData}) { return filterAlbumsByCommentary(wikiData.albumData); } -export function write(album, {wikiData}) { - const {wikiInfo} = wikiData; - +export function write(album) { const entries = [album, ...album.tracks] .filter((x) => x.commentary) .map((x) => x.commentary); @@ -35,7 +33,6 @@ export function write(album, {wikiData}) { getThemeString, link, language, - to, transformMultiline, }) => ({ title: language.$('albumCommentaryPage.title', {album: album.name}), |