[bugfix] typo, Speaker -> speaker.

This commit is contained in:
Sakamoto Shiina
2025-03-22 18:06:27 +09:00
parent 7a3a2cfe07
commit 377899d5e1
2 changed files with 2 additions and 2 deletions

View File

@@ -150,7 +150,7 @@ class Controller:
400, 400,
self.run_mapping["error_device"], self.run_mapping["error_device"],
{ {
"message":"No Speaker device detected", "message":"No speaker device detected",
"data": None "data": None
}, },
) )

View File

@@ -44,7 +44,7 @@ export const _useBackendErrorHandling = () => {
case "No mic device detected": case "No mic device detected":
showNotification_Error(t("common_error.no_device_mic")); showNotification_Error(t("common_error.no_device_mic"));
break; break;
case "No Speaker device detected": case "No speaker device detected":
showNotification_Error(t("common_error.no_device_speaker")); showNotification_Error(t("common_error.no_device_speaker"));
break; break;