From 006b81571d4250221764d810882072f977866324 Mon Sep 17 00:00:00 2001 From: "k. Naka" <100704180+na-trium-144@users.noreply.github.com> Date: Wed, 18 Mar 2026 00:22:54 +0900 Subject: [PATCH] Apply suggested fix to app/schema/chat.ts from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- app/schema/chat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/schema/chat.ts b/app/schema/chat.ts index 798b447..47cfc5b 100644 --- a/app/schema/chat.ts +++ b/app/schema/chat.ts @@ -41,7 +41,7 @@ export const chatRelations = relations(chat, ({ many, one }) => ({ diff: many(diff), })); -export const sectionRelations = relations(chat, ({ many }) => ({ +export const sectionRelations = relations(section, ({ many }) => ({ chat: many(chat), // diff: many(diff), }));