"git@developer.sourcefind.cn:OpenDAS/ollama.git" did not exist on "6005b157c261b2528df33d01b275b666ff5c2c4a"
Commit eca59f75 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: share chat modal

parent 9975cb17
...@@ -73,8 +73,10 @@ ...@@ -73,8 +73,10 @@
export let show = false; export let show = false;
onMount(async () => { onMount(async () => {
chat = await getChatById(localStorage.token, $chatId); chatId.subscribe(async (value) => {
console.log(chat); chat = await getChatById(localStorage.token, value);
console.log(chat);
});
}); });
</script> </script>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment