fix: query

This commit is contained in:
Cory Dransfeldt 2024-05-08 12:48:58 -07:00
parent e33c46dad2
commit 66468389c6
No known key found for this signature in database
4 changed files with 5 additions and 5 deletions

View file

@ -55,7 +55,7 @@ export default async (request) => {
const { data: artistData, error: artistError } = await supabase const { data: artistData, error: artistError } = await supabase
.from('artists') .from('artists')
.select('*') .select('*')
.eq('key', artistKey) .eq('name_key', artistKey)
.single() .single()
if (artistError && artistError.code === 'PGRST116') { if (artistError && artistError.code === 'PGRST116') {

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.5", "version": "14.0.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.5", "version": "14.0.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.2.2", "@cdransf/api-text": "^1.2.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "14.0.5", "version": "14.0.6",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -92,7 +92,7 @@ export default async (request) => {
const { data: artistData, error: artistError } = await supabase const { data: artistData, error: artistError } = await supabase
.from('artists') .from('artists')
.select('*') .select('*')
.eq('key', artistKey) .eq('name_key', artistKey)
.single() .single()
if (artistError && artistError.code === 'PGRST116') { if (artistError && artistError.code === 'PGRST116') {