about summary refs log tree commit diff
path: root/src/view/com/util/List.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-05-08 21:44:49 +0100
committerGitHub <noreply@github.com>2024-05-08 21:44:49 +0100
commit701e508a1a5a99389242282a82973a3015070509 (patch)
treed438953b9d44c14fbf9f176cfa16aaab328fcc67 /src/view/com/util/List.tsx
parent750a5c899b31fec215064836be548aa71e83c82d (diff)
downloadvoidsky-701e508a1a5a99389242282a82973a3015070509.tar.zst
add sideborders prop (#3920)
Diffstat (limited to 'src/view/com/util/List.tsx')
-rw-r--r--src/view/com/util/List.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index 194f81c5c..0064a7b80 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -25,6 +25,7 @@ export type ListProps<ItemT> = Omit<
   onRefresh?: () => void
   onItemSeen?: (item: ItemT) => void
   containWeb?: boolean
+  sideBorders?: boolean
 }
 export type ListRef = React.MutableRefObject<FlatList_INTERNAL | null>