diff --git a/src/lib/database.d.ts b/src/lib/database.d.ts index 88ee7ec..b254ea8 100644 --- a/src/lib/database.d.ts +++ b/src/lib/database.d.ts @@ -65,7 +65,7 @@ export type Database = { } study_spaces: { Row: { - building_address: string | null + building_location: string | null created_at: string | null description: string | null id: string @@ -73,7 +73,7 @@ export type Database = { updated_at: string | null } Insert: { - building_address?: string | null + building_location?: string | null created_at?: string | null description?: string | null id?: string @@ -81,7 +81,7 @@ export type Database = { updated_at?: string | null } Update: { - building_address?: string | null + building_location?: string | null created_at?: string | null description?: string | null id?: string diff --git a/src/routes/space/+page.svelte b/src/routes/space/+page.svelte index 483ebef..46af12f 100644 --- a/src/routes/space/+page.svelte +++ b/src/routes/space/+page.svelte @@ -14,7 +14,7 @@ let spaceImg = $state(); let studySpaceData = $state, "id" | "created_at" | "updated_at">>({ description: "", - building_address: "", + building_location: "", location: "" }); @@ -81,16 +81,16 @@