Skip to content

Commit

Permalink
Merge pull request #2863 from nervosnetwork/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Oct 10, 2023
2 parents 0d72d95 + 47b139a commit 55fe242
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

1 comment on commit 55fe242

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 6464566953

Please sign in to comment.