mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 20:07:49 +01:00
refac
This commit is contained in:
@@ -61,7 +61,9 @@
|
||||
}
|
||||
|
||||
const importChatsHandler = async (_chats) => {
|
||||
const chats = _chats.map((chat) => {
|
||||
const res = await importChats(
|
||||
localStorage.token,
|
||||
_chats.map((chat) => {
|
||||
if (chat.chat) {
|
||||
return {
|
||||
chat: chat.chat,
|
||||
@@ -82,9 +84,8 @@
|
||||
updated_at: chat?.updated_at ?? null
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
const res = await importChats(localStorage.token, chats);
|
||||
})
|
||||
);
|
||||
if (res) {
|
||||
toast.success(`Successfully imported ${res.length} chats.`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user