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 slugify from 'slugify'
const BASE_URL = 'https://coryd.dev'

View file

@ -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)