fix: shared chat not updating

This commit is contained in:
Timothy Jaeryang Baek
2024-11-18 05:17:35 -08:00
parent bca9c71ed6
commit dc8c85c33d
4 changed files with 19 additions and 24 deletions

View File

@@ -80,7 +80,7 @@
}
</script>
<Modal bind:show size="sm">
<Modal bind:show size="md">
<div>
<div class=" flex justify-between dark:text-gray-300 px-5 pt-4 pb-0.5">
<div class=" text-lg font-medium self-center">{$i18n.t('Share Chat')}</div>

View File

@@ -20,7 +20,7 @@
} else if (size === 'sm') {
return 'w-[30rem]';
} else if (size === 'md') {
return 'w-[48rem]';
return 'w-[42rem]';
} else {
return 'w-[56rem]';
}