hide pin action on topics

This commit is contained in:
ammarahm-ed
2020-12-28 16:16:50 +05:00
parent 86be2ee725
commit 36afa25dda

View File

@@ -105,7 +105,7 @@ const ActionStrip = ({note, setActionStrip}) => {
const actions = [
{
icon: note.pinned ? 'pin-off' : 'pin',
visible: true,
visible:note.type === "note" || note.type === "notebook",
onPress: async () => {
if (!note.id) return;