Skip to content

Commit 54a8a42

Browse files
committed
fix:(Fixed on Supabase integration for chatbot AI)
1 parent e10b5b5 commit 54a8a42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/ui/chats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default function Chats({ author }: ChatProp) {
143143
async function loadMessagesFromSupabase() {
144144
try {
145145
const { data, error } = await supabase
146-
.from("bot_user_messages")
146+
.from("bot_chat_messages")
147147
.select("*")
148148
.eq("author", author)
149149
.order("timestamp", { ascending: true });

0 commit comments

Comments
 (0)