From b1229681986609fa61898ef5ffe65a9f731abba9 Mon Sep 17 00:00:00 2001 From: jakubroch Date: Sun, 27 Oct 2024 07:40:55 +0100 Subject: [PATCH] fix: use cld player profiles package for default profiles --- src/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.js b/src/player.js index 98934c7e..04d9b6da 100644 --- a/src/player.js +++ b/src/player.js @@ -8,7 +8,7 @@ const getDefaultProfileConfig = (profileName) => { const profile = defaultProfiles.find(({ name }) => profileName === name); if (!profile) { - throw new Error(`Default profile with name ${profileName} doest not exist`); + throw new Error(`Default profile with name ${profileName} does not exist`); } return profile.config;