From 310e17d3f2b47d2fdb879f8c96388f83721d8d18 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 16 Sep 2026 14:19:44 +0300 Subject: [PATCH] remove broken placeholder size switch --- src/components/conversation/conversation.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 9855c01cd..10f353fe1 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -181,12 +181,8 @@ export default { // Placeholder heights. const { fontSize, navbarSize, panelHeaderSize } = useInterfaceSizes() - const mutedStatusHeight = computed(() => fontSize.value * 1.5) const normalStatusHeight = computed(() => fontSize.value * 10) - const getPlaceholderHeight = (id) => - conversation.value.find((item) => item.id === id)?.muted - ? mutedStatusHeight - : normalStatusHeight + const getPlaceholderHeight = (id) => normalStatusHeight const offset = computed(() => { // The fontsize after navbar is the little gap between navbar and content if (isPage.value) {