diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue index 1484378b..57a0f065 100644 --- a/src/views/ContactQRScanShowView.vue +++ b/src/views/ContactQRScanShowView.vue @@ -220,6 +220,13 @@ export default class ContactQRScanShow extends Vue { if (!granted) { this.error = "Camera permission denied"; this.isScanning = false; + // Show notification for better visibility + this.$notify({ + group: "alert", + type: "warning", + title: "Camera Access Required", + text: "Camera permission denied" + }, 5000); return; } }