about summary refs log tree commit diff
path: root/src/components/dms
diff options
context:
space:
mode:
authorBartosz Kaszubowski <gosimek@gmail.com>2024-11-14 18:56:33 +0100
committerGitHub <noreply@github.com>2024-11-14 17:56:33 +0000
commit7d34f6bb5c47724b01336eaced7909426be1bdda (patch)
treeac1424f631283a8dde7007244b542dc14db290f1 /src/components/dms
parent5f7caf30105569fe02cda2b029d3e6cb1e4e4780 (diff)
downloadvoidsky-7d34f6bb5c47724b01336eaced7909426be1bdda.tar.zst
NewChatDialog: remove extra padding on web (#6333)
Diffstat (limited to 'src/components/dms')
-rw-r--r--src/components/dms/dialogs/SearchablePeopleList.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/dms/dialogs/SearchablePeopleList.tsx b/src/components/dms/dialogs/SearchablePeopleList.tsx
index a5687a096..bc7fcbe56 100644
--- a/src/components/dms/dialogs/SearchablePeopleList.tsx
+++ b/src/components/dms/dialogs/SearchablePeopleList.tsx
@@ -278,7 +278,7 @@ export function SearchablePeopleList({
           ) : null}
         </View>
 
-        <View style={[, web([a.pt_xs])]}>
+        <View style={web([a.pt_xs])}>
           <SearchInput
             inputRef={inputRef}
             value={searchText}
@@ -313,6 +313,7 @@ export function SearchablePeopleList({
         web([a.py_0, {height: '100vh', maxHeight: 600}, a.px_0]),
         native({height: '100%'}),
       ]}
+      webInnerContentContainerStyle={a.py_0}
       webInnerStyle={[a.py_0, {maxWidth: 500, minWidth: 200}]}
       keyboardDismissMode="on-drag"
     />