We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 085d3cb commit 3b821e1Copy full SHA for 3b821e1
1 file changed
src/lib/utils/index.ts
@@ -818,7 +818,10 @@ export const convertOpenAIChats = (_chats) => {
818
// Skip folder/project metadata entries that lack a 'mapping' key
819
if (!('mapping' in convo)) {
820
skipped++;
821
- console.log('Skipping non-conversation entry (folder/project):', convo['title'] ?? convo['id']);
+ console.log(
822
+ 'Skipping non-conversation entry (folder/project):',
823
+ convo['title'] ?? convo['id']
824
+ );
825
continue;
826
}
827
0 commit comments