mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +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,
|
||||
permlink: comment.permlink,
|
||||
},
|
||||
key: `${comment.author}/${comment.permlink}`
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -44,7 +44,8 @@ export const PostCardContent = ({ content, isHideImage, thumbHeight, nsfw, setTh
|
||||
content: content,
|
||||
author: content.author,
|
||||
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';
|
||||
|
||||
// Components
|
||||
|
Loading…
Reference in New Issue
Block a user