From 98851503640c5376da1d089a7a83f5b2f4872cb2 Mon Sep 17 00:00:00 2001 From: amiraabouhadid Date: Wed, 27 Nov 2024 08:29:17 +0200 Subject: [PATCH] remove light app store btns --- packages/playground/src/components/qr_play_store.vue | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/packages/playground/src/components/qr_play_store.vue b/packages/playground/src/components/qr_play_store.vue index 73c22f43ca..6cf2b44dae 100644 --- a/packages/playground/src/components/qr_play_store.vue +++ b/packages/playground/src/components/qr_play_store.vue @@ -12,7 +12,7 @@ :style="{ cursor: 'pointer', width: '9rem' }" class="mx-2" :title="app.alt" - v-html="theme == 'dark' ? app.src_dark : app.src_light" + v-html="app.src" :href="app.url" target="_blank" /> @@ -23,18 +23,15 @@ const props = defineProps({ qr: String, }); -const theme = useTheme().name.value; + const apps = [ { - src_dark: ``, - src_light: ` -`, + src: ``, alt: "Threefold Connect on Google Play Store", url: "https://play.google.com/store/apps/details?id=org.jimber.threebotlogin&hl=en&gl=US", }, { - src_dark: ``, - src_light: ``, + src: ``, alt: "Threefold Connect on Apple App Store", url: "https://apps.apple.com/us/app/threefold-connect/id1459845885", }, @@ -42,7 +39,6 @@ const apps = [