From 3b821e1f3a54d56fcde9ee88ca977c8a0ff3caea Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Tue, 21 Apr 2026 16:32:17 +0900 Subject: [PATCH] refac --- src/lib/utils/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 38e7636e25..1820e70481 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -818,7 +818,10 @@ export const convertOpenAIChats = (_chats) => { // Skip folder/project metadata entries that lack a 'mapping' key if (!('mapping' in convo)) { skipped++; - console.log('Skipping non-conversation entry (folder/project):', convo['title'] ?? convo['id']); + console.log( + 'Skipping non-conversation entry (folder/project):', + convo['title'] ?? convo['id'] + ); continue; }