We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6475eca commit 1ed5afcCopy full SHA for 1ed5afc
frontend/src/lib/components/quib.svelte
@@ -16,7 +16,7 @@
16
const authStore = createAuthStore(),
17
viewStore = createViewStore();
18
19
- let is_expanded = $state(is_valid(quib.content));
+ let is_expanded = $state(false);
20
21
const is_upvoted = $derived.by(check_if_upvoted);
22
function check_if_upvoted() {
@@ -40,7 +40,7 @@
40
41
{#snippet content_or_cover()}
42
{#if is_valid(quib.content)}
43
- <p class="line-clamp-3 text-sm font-normal">
+ <p class="text-sm font-normal">
44
{quib.content}
45
</p>
46
{:else}
0 commit comments