about summary refs log tree commit diff
path: root/src/view/com/util/images/ImageLayoutGrid.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-17 12:12:17 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-17 12:12:17 -0600
commitee8d311795954f6bece81b9cbaebdb79eee20d0d (patch)
treeed964459f0b799cbf318b361aa141389ab5e2a98 /src/view/com/util/images/ImageLayoutGrid.tsx
parentb9778b7943b85fddb153efe413981a998bb641e3 (diff)
downloadvoidsky-ee8d311795954f6bece81b9cbaebdb79eee20d0d.tar.zst
Fix notification descriptions and render images for your own posts in notifs
Diffstat (limited to 'src/view/com/util/images/ImageLayoutGrid.tsx')
-rw-r--r--src/view/com/util/images/ImageLayoutGrid.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/images/ImageLayoutGrid.tsx b/src/view/com/util/images/ImageLayoutGrid.tsx
index cb560dd35..5eb5b3c54 100644
--- a/src/view/com/util/images/ImageLayoutGrid.tsx
+++ b/src/view/com/util/images/ImageLayoutGrid.tsx
@@ -24,7 +24,7 @@ export function ImageLayoutGrid({
   style,
 }: {
   type: ImageLayoutGridType
-  uris: string
+  uris: string[]
   onPress?: (index: number) => void
   style?: StyleProp<ViewStyle>
 }) {
@@ -58,7 +58,7 @@ function ImageLayoutGridInner({
   containerInfo,
 }: {
   type: ImageLayoutGridType
-  uris: string
+  uris: string[]
   onPress?: (index: number) => void
   containerInfo: Dim
 }) {