Merge pull request 'fix(i18l): Change broken validations string for superuser SSH' (#276) from user-assets into master

Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/276
Reviewed-by: Inex Code <inex.code@selfprivacy.org>
This commit is contained in:
NaiJi ✨ 2023-08-08 22:13:54 +03:00
commit 5eadbd9e6b
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class SshFormCubit extends FormCubit {
ValidationModel( ValidationModel(
(final String newKey) => (final String newKey) =>
user.sshKeys.any((final String key) => key == newKey), user.sshKeys.any((final String key) => key == newKey),
'validations.already_exists'.tr(), 'validations.already_exist'.tr(),
), ),
RequiredStringValidation('validations.required'.tr()), RequiredStringValidation('validations.required'.tr()),
ValidationModel<String>( ValidationModel<String>(