chore: minor cleanup
This commit is contained in:
parent
82602d099a
commit
e07668742a
2 changed files with 6 additions and 7 deletions
|
@ -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'
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
|
|
||||||
|
|
Reference in a new issue