From d63587fcd1a4d80917e6377e59a564ea5cfb3cc4 Mon Sep 17 00:00:00 2001 From: loucass003 Date: Mon, 3 Feb 2025 00:17:26 +0100 Subject: [PATCH] lint --- gui/src/sounds/sounds.ts | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/gui/src/sounds/sounds.ts b/gui/src/sounds/sounds.ts index 7fe00c2a50..49fb30b8b1 100644 --- a/gui/src/sounds/sounds.ts +++ b/gui/src/sounds/sounds.ts @@ -10,24 +10,12 @@ const fullResetStartedSound = new Audio( const mountingResetStartedSound = new Audio( await fetchResourceUrl('/sounds/mounting-reset-started-sound.mp3') ); -const tapSetupSound1 = new Audio( - await fetchResourceUrl('/sounds/first-tap.mp3') -); -const tapSetupSound2 = new Audio( - await fetchResourceUrl('/sounds/second-tap.mp3') -); -const tapSetupSound3 = new Audio( - await fetchResourceUrl('/sounds/third-tap.mp3') -); -const tapSetupSound4 = new Audio( - await fetchResourceUrl('/sounds/fourth-tap.mp3') -); -const tapSetupSound5 = new Audio( - await fetchResourceUrl('/sounds/fifth-tap.mp3') -); -const tapSetupSoundEnd = new Audio( - await fetchResourceUrl('/sounds/end-tap.mp3') -); +const tapSetupSound1 = new Audio(await fetchResourceUrl('/sounds/first-tap.mp3')); +const tapSetupSound2 = new Audio(await fetchResourceUrl('/sounds/second-tap.mp3')); +const tapSetupSound3 = new Audio(await fetchResourceUrl('/sounds/third-tap.mp3')); +const tapSetupSound4 = new Audio(await fetchResourceUrl('/sounds/fourth-tap.mp3')); +const tapSetupSound5 = new Audio(await fetchResourceUrl('/sounds/fifth-tap.mp3')); +const tapSetupSoundEnd = new Audio(await fetchResourceUrl('/sounds/end-tap.mp3')); const tapSetupExtraSound = new Audio( await fetchResourceUrl('/sounds/tapextrasetup.mp3') );