Skip to content

Commit fedc186

Browse files
Remove import string replace
After fixing the app name, we no longer need this hacky string replace when using file-loader Signed-off-by: Marcel Robitaille <[email protected]>
1 parent c1bd87f commit fedc186

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/RecipeTimer.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ export default {
6565
this.resetTimeDisplay()
6666
// Start loading the sound early so it's ready to go when we need to
6767
// play it
68-
this.audio = new Audio(
69-
alarmSound.replace("nextcloud-cookbook", "cookbook")
70-
)
68+
this.audio = new Audio(alarmSound)
7169
},
7270
methods: {
7371
onTimerEnd() {

0 commit comments

Comments
 (0)