{i18n.t('Join a game')}
diff --git a/apps/codebattle/assets/js/widgets/pages/registration/Registration.tsx b/apps/codebattle/assets/js/widgets/pages/registration/Registration.tsx
index 3ffd53811..c5b5249c1 100644
--- a/apps/codebattle/assets/js/widgets/pages/registration/Registration.tsx
+++ b/apps/codebattle/assets/js/widgets/pages/registration/Registration.tsx
@@ -381,7 +381,11 @@ function ResetPassword() {
if (isSend) {
return (
- We have sent you an email with instructions on how to reset your password
+
+
+ We have sent you an email with instructions on how to reset your password
+
+
);
}
diff --git a/apps/codebattle/assets/js/widgets/pages/settings/UserSettings.tsx b/apps/codebattle/assets/js/widgets/pages/settings/UserSettings.tsx
index dbdf5a738..48f34b329 100644
--- a/apps/codebattle/assets/js/widgets/pages/settings/UserSettings.tsx
+++ b/apps/codebattle/assets/js/widgets/pages/settings/UserSettings.tsx
@@ -13,6 +13,7 @@ import type { RootState } from '@/slices/store';
import { getPageProp } from '@/inertia/pageProps';
import i18n, { getSupportedLocale } from '../../../i18n';
+import { configureSound } from '../../lib/sound';
import { userSettingsSelector } from '../../selectors';
import { actions } from '../../slices';
@@ -226,6 +227,7 @@ function UserSettings() {
await i18n.changeLanguage(getSupportedLocale(data.locale));
dispatch(actions.updateUserSettings(camelizeKeys(data)));
+ configureSound(settingsValues.soundSettings);
if (Object.values(passwordValues).some((value) => value.trim())) {
await updatePassword(passwordValues);
diff --git a/apps/codebattle/lib/codebattle_web/templates/task_pack/_form.html.heex b/apps/codebattle/lib/codebattle_web/templates/task_pack/_form.html.heex
index 7c779e4a5..6bd690ad8 100644
--- a/apps/codebattle/lib/codebattle_web/templates/task_pack/_form.html.heex
+++ b/apps/codebattle/lib/codebattle_web/templates/task_pack/_form.html.heex
@@ -17,7 +17,8 @@
{label(f, :visibility, class: "text-white")}
{select(f, :visibility, Codebattle.TaskPack.visibility_types(),
- class: "form-select form-select-lg custom-select cb-bg-panel cb-border-color text-white"
+ class:
+ "form-select form-select-lg custom-select cb-dark-select cb-bg-panel cb-border-color text-white"
)}
{error_tag(f, :visibility)}