fix: share chat modal

This commit is contained in:
Timothy J. Baek 2024-04-03 19:45:08 -07:00
parent 000bea84ae
commit bfd066cc2f

View file

@ -54,12 +54,16 @@
export let show = false; export let show = false;
onMount(async () => { $: if (show) {
chatId.subscribe(async (value) => { (async () => {
chat = await getChatById(localStorage.token, value); if ($chatId) {
chat = await getChatById(localStorage.token, $chatId);
} else {
chat = null;
console.log(chat); console.log(chat);
}); }
}); })();
}
</script> </script>
<Modal bind:show size="sm"> <Modal bind:show size="sm">