chore: minor cleanup

This commit is contained in:
Cory Dransfeldt 2024-06-09 19:35:01 -07:00
parent 82602d099a
commit e07668742a
No known key found for this signature in database
2 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,4 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import slugify from 'slugify'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'

View file

@ -11,12 +11,12 @@ export default async function () {
const { data, error } = await supabase const { data, error } = await supabase
.from('albums') .from('albums')
.select(` .select(`
name, name,
key, key,
image, image,
release_date, release_date,
release_link, release_link,
artists (name_string, mbid, country) artists (name_string, mbid, country)
`) `)
.gt('release_date', today) .gt('release_date', today)