optimize UI

hide maintenance
This commit is contained in:
Julian Krauser 2025-07-25 12:45:59 +02:00
parent 8e64b549d7
commit 2c541eb5aa
18 changed files with 30 additions and 26 deletions

View file

@ -37,7 +37,7 @@
<script setup lang="ts">
import { defineComponent } from "vue";
import { mapActions, mapState } from "pinia";
import { useScannerStore } from "../../stores/admin/scanner";
import { useScannerStore } from "@/stores/admin/scanner";
import { ArrowRightIcon, QrCodeIcon, TrashIcon } from "@heroicons/vue/24/outline";
import TextCopy from "../TextCopy.vue";
import QRCode from "qrcode";
@ -84,9 +84,7 @@ export default defineComponent({
.then((res) => {
(this.$refs.qr as HTMLImageElement).src = res;
})
.catch((err) => {
console.log(err);
});
.catch((err) => {});
},
},
});