From e07668742a7a30cec4c9e20d3c70b97e47c7a0b0 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 9 Jun 2024 19:35:01 -0700 Subject: [PATCH] chore: minor cleanup --- config/collections/index.js | 1 - src/_data/albumReleases.js | 12 ++++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index ae529618..0454a127 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -1,5 +1,4 @@ import { DateTime } from 'luxon' -import slugify from 'slugify' const BASE_URL = 'https://coryd.dev' diff --git a/src/_data/albumReleases.js b/src/_data/albumReleases.js index ec3d190d..373a1a64 100644 --- a/src/_data/albumReleases.js +++ b/src/_data/albumReleases.js @@ -11,12 +11,12 @@ export default async function () { const { data, error } = await supabase .from('albums') .select(` - name, - key, - image, - release_date, - release_link, - artists (name_string, mbid, country) + name, + key, + image, + release_date, + release_link, + artists (name_string, mbid, country) `) .gt('release_date', today)