0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): remove text input error state from delete form (#1302)

This commit is contained in:
Xiao Yijun 2022-06-29 17:08:30 +08:00 committed by GitHub
parent f72b21d160
commit 9e67e59ff5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

@ -70,7 +70,6 @@ const DeleteForm = ({ id, name, onClose }: Props) => {
autoFocus
value={inputName}
placeholder={t('api_resource_details.enter_your_api_resource_name')}
hasError={inputMismatched}
onChange={(event) => {
setInputName(event.currentTarget.value);
}}

View file

@ -70,7 +70,6 @@ const DeleteForm = ({ id, name, onClose }: Props) => {
autoFocus
value={inputName}
placeholder={t('application_details.enter_your_application_name')}
hasError={inputMismatched}
onChange={(event) => {
setInputName(event.currentTarget.value);
}}