Skip to content

Commit

Permalink
fix: 277
Browse files Browse the repository at this point in the history
  • Loading branch information
devchenyan committed Oct 9, 2023
1 parent b3f3c2e commit 6380c65
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/neuron-ui/src/components/SUDTSend/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ const SUDTSend = () => {
) : null
}
disabled={sendState.sendAll}
error={errors[field.key]}
error={errors[field.key] || (field.key === Fields.Address ? remoteError : '')}
className={styles[field.key]}
placeholder={field.placeholder}
/>
Expand Down Expand Up @@ -448,7 +448,6 @@ const SUDTSend = () => {
value={sendState.description}
field={Fields.Description}
onChange={onInput}
error={remoteError}
placeholder={t('s-udt.send.description-placeholder')}
/>
</div>
Expand Down

0 comments on commit 6380c65

Please sign in to comment.