diff --git a/apps/mobile/app/components/sheets/link-note/index.tsx b/apps/mobile/app/components/sheets/link-note/index.tsx index 65b86a348..5fd0c344d 100644 --- a/apps/mobile/app/components/sheets/link-note/index.tsx +++ b/apps/mobile/app/components/sheets/link-note/index.tsx @@ -99,15 +99,31 @@ const ListBlockItem = ({ flexDirection: "row", width: "100%", columnGap: 10, - alignItems: "center" + alignItems: "flex-start", + borderBottomWidth: 1, + borderBottomColor: colors.primary.border, + paddingVertical: 5, + justifyContent: "space-between" }} > + + {item?.content.length > 200 + ? item?.content.slice(0, 200) + "..." + : !item.content || item.content.trim() === "" + ? "(Empty block)" + : item.content} + + - - - {item?.content.length > 200 - ? item?.content.slice(0, 200) + "..." - : item.content} - ); @@ -214,7 +220,8 @@ export default function LinkNote(props: { item.id} data={nodes} /> @@ -320,6 +328,7 @@ export default function LinkNote(props: { style={{ marginTop: 10 }} + windowSize={3} data={notes?.placeholders} /> )}