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 = [