浏览代码

Fix typo and update notification wording (#1100)

Cong Hoang Nguyen 2 年之前
父节点
当前提交
391d00bcb9
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      web/src/lib/components/admin-page/settings/oauth/oauth-settings.svelte

+ 2 - 2
web/src/lib/components/admin-page/settings/oauth/oauth-settings.svelte

@@ -29,7 +29,7 @@
 		savedConfig = resetConfig.oauth;
 
 		notificationController.show({
-			message: 'Reset OAuth settings to the recent saved settings',
+			message: 'Reset OAuth settings to the last saved settings',
 			type: NotificationType.Info
 		});
 	}
@@ -129,7 +129,7 @@
 				<div class="mt-4">
 					<SettingSwitch
 						title="AUTO REGISTER"
-						subtitle="Automatically register new users after singning in with OAuth"
+						subtitle="Automatically register new users after signing in with OAuth"
 						bind:checked={oauthConfig.autoRegister}
 						disabled={!oauthConfig.enabled}
 					/>