Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Dec 17, 2024
1 parent 90eb8bf commit f4f7f1f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
6 changes: 5 additions & 1 deletion components/tabs/WalletTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,11 @@
</p>
</div>
<div class="mt-5 qrcode-container">
<qrcode :value="accountStore.getAddress"></qrcode>
<qrcode
:value="accountStore.getAddress"
:color="{ dark: '#000000', light: '#ffffff' }"
type="image/png"
></qrcode>
</div>

<div class="flex flex-col mt-5">
Expand Down
8 changes: 0 additions & 8 deletions components/ui/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,14 +215,6 @@ const accountStore = useAccount();
const emitEvent = (eventName: string) => {
eventBus.emit(eventName);
};

// Props für Flexibilität
defineProps({
textMobile: { type: String, required: false },
textDesktop: { type: String, required: false },
onClick: { type: Function, required: true },
isMobile: { type: Boolean, required: true },
});
</script>

<style scoped>
Expand Down
8 changes: 0 additions & 8 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ const accountStore = useAccount();
const emitEvent = (eventName: string) => {
eventBus.emit(eventName);
};
// Props für Flexibilität
defineProps({
textMobile: { type: String, required: false },
textDesktop: { type: String, required: false },
onClick: { type: Function, required: true },
isMobile: { type: Boolean, required: true },
});
</script>

<style scoped>
Expand Down

0 comments on commit f4f7f1f

Please sign in to comment.