From 70c7e9391953254c268889cc15901c2de5b5a68c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Mon, 4 Mar 2024 17:01:56 +0100 Subject: [PATCH] refactor: update no reactivity transform changes (#2639) --- components/status/StatusContent.vue | 2 +- composables/masto/publish.ts | 2 +- pages/[[server]]/@[account]/index.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/status/StatusContent.vue b/components/status/StatusContent.vue index 04b2e80b..3bb90786 100644 --- a/components/status/StatusContent.vue +++ b/components/status/StatusContent.vue @@ -30,7 +30,7 @@ const hideAllMedia = computed( }, ) const embeddedMediaPreference = usePreferences('experimentalEmbeddedMedia') -const allowEmbeddedMedia = computed(() => status.card?.html && embeddedMediaPreference) +const allowEmbeddedMedia = computed(() => status.card?.html && embeddedMediaPreference.value)