add menu dining, transport and change table
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user