fix: remove non-existent deleted_at column from stops query
Deploy to route.crispygoat.com / deploy (push) Successful in 3m59s

This commit is contained in:
Tyler
2026-06-10 13:37:39 -06:00
parent 8428f3a490
commit 24cf9a7261
6 changed files with 1 additions and 7 deletions
-1
View File
@@ -15,7 +15,6 @@ type Stop = {
time: string;
location: string;
active: boolean;
deleted_at?: string | null;
brand_id: string;
status?: string;
brands: { name: string } | { name: string }[];
-1
View File
@@ -25,7 +25,6 @@ type Stop = {
time: string;
location: string;
active: boolean;
deleted_at?: string | null;
brand_id: string;
status?: string;
address?: string | null;
-1
View File
@@ -16,7 +16,6 @@ export type StopForView = {
time: string;
location: string;
active: boolean;
deleted_at?: string | null;
brand_id: string;
status?: string;
address?: string | null;
-1
View File
@@ -8,7 +8,6 @@ export type Stop = {
time: string; // HH:MM
location: string;
active: boolean;
deleted_at?: string | null;
brand_id: string;
status?: string;
address?: string | null;