We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c575b commit cec0735Copy full SHA for cec0735
utils/app/data.ts
@@ -19,4 +19,5 @@ export const exportConversations = () => {
19
20
export const importConversations = (conversations: Conversation[]) => {
21
localStorage.setItem("conversationHistory", JSON.stringify(conversations));
22
+ localStorage.setItem("selectedConversation", JSON.stringify(conversations[conversations.length - 1]));
23
};
0 commit comments