add menu dining, transport and change table

This commit is contained in:
aji@catalis.app
2025-06-08 12:19:59 +07:00
parent 797958500c
commit f271341d4a
15 changed files with 209 additions and 100 deletions

View File

@@ -152,7 +152,7 @@
}
const { data: userData, error: userError } = await supabase
.from("users")
.from("vb_users")
.select("id, full_name");
if (userError) {
console.error("Error fetching users:", userError);
@@ -256,7 +256,7 @@
created_at: new Date().toISOString(),
};
const { data, error } = await supabase.from("issues").insert([issue]);
const { data, error } = await supabase.from("vb_ssues").insert([issue]);
if (error) {
console.error("Error submitting issue:", error);