mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-03 11:40:44 +03:00
setting post screen key on navigation
This commit is contained in:
parent
82628e92d7
commit
246e361733
@ -254,6 +254,7 @@ const CommentsContainer = ({
|
|||||||
author: comment.author,
|
author: comment.author,
|
||||||
permlink: comment.permlink,
|
permlink: comment.permlink,
|
||||||
},
|
},
|
||||||
|
key: `${comment.author}/${comment.permlink}`
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -44,7 +44,8 @@ export const PostCardContent = ({ content, isHideImage, thumbHeight, nsfw, setTh
|
|||||||
content: content,
|
content: content,
|
||||||
author: content.author,
|
author: content.author,
|
||||||
permlink: content.permlink,
|
permlink: content.permlink,
|
||||||
}
|
},
|
||||||
|
key: `${content.author}/${content.permlink}`
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useState, useRef, useEffect, useMemo } from 'react';
|
import React, { useState, useRef, useEffect } from 'react';
|
||||||
import { View } from 'react-native';
|
import { View } from 'react-native';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
Loading…
Reference in New Issue
Block a user