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) {