From e38c40226695b21b55fc64ed32d74c246e5fb1c4 Mon Sep 17 00:00:00 2001
From: Dennis Postma <dennis@directonline.io>
Date: Sat, 2 Nov 2024 13:54:16 +0100
Subject: [PATCH] Fix button sound playing when clicked outside of buttons

---
 src/App.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/App.vue b/src/App.vue
index ff637ca..6961341 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -40,7 +40,7 @@ watch(
 
 // #209: Play sound when a button is pressed
 addEventListener('click', (event) => {
-  if (event.target !instanceof HTMLButtonElement) {
+  if (!(event.target instanceof HTMLButtonElement)) {
     return
   }
   const audio = new Audio('/assets/music/click-btn.mp3')