needs-provider fix

This commit is contained in:
Tim
2024-04-12 01:06:24 -04:00
parent bbabf8800b
commit af87289035
4 changed files with 15 additions and 21 deletions

View File

@@ -1,20 +1,17 @@
<template>
<needs-provider>
<needs-signer>
<phone-card>
<v-card-title><v-icon icon="mdi-information-outline" size="small" color="grey-darken-1"/> Vault Orders</v-card-title>
<v-card-item>
<orders/>
</v-card-item>
</phone-card>
</needs-signer>
</needs-provider>
<needs-signer>
<phone-card>
<v-card-title><v-icon icon="mdi-information-outline" size="small" color="grey-darken-1"/> Vault Orders</v-card-title>
<v-card-item>
<orders/>
</v-card-item>
</phone-card>
</needs-signer>
</template>
<script setup>
import Orders from "@/components/Status.vue";
import NeedsSigner from "@/components/NeedsSigner.vue";
import NeedsProvider from "@/components/NeedsProvider.vue";
import PhoneCard from "@/components/PhoneCard.vue";
</script>