Skip to content

Commit 19a4bd7

Browse files
committedNov 15, 2022
fix: undefined
1 parent 853240b commit 19a4bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎components/modal/SendModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ const SendModal = ({ open, onDidDismiss }: any) => {
240240
return <>
241241
<div>
242242
{
243-
assets.length ?
243+
assets?.length ?
244244
<>
245245
{assets.map((asset, index) => {
246246
return <div key={index} className='block relative mt-1 rounded-md shadow-sm '>

0 commit comments

Comments
 (0)
Please sign in to comment.