Merge pull request #5578 from nymtech/yana/fix-double-memo

delete double memo field in send modal
This commit is contained in:
benedetta davico
2025-03-12 15:03:04 +01:00
committed by GitHub
@@ -157,20 +157,6 @@ export const SendInputModal = ({
initialValue={userFees?.amount}
fullWidth
/>
<TextField
name="memo"
label="Memo"
onChange={(e) => onMemoChange(e.target.value)}
value={memo}
error={!memoIsValid}
helperText={
!memoIsValid
? ' The text is invalid, only alphanumeric characters and white spaces are allowed'
: undefined
}
InputLabelProps={{ shrink: true }}
fullWidth
/>
</Stack>
)}
</SimpleModal>