about summary refs log tree commit diff
path: root/src/view/com/lists/ProfileLists.tsx
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-06-04 11:07:11 +0100
committerGitHub <noreply@github.com>2024-06-04 11:07:11 +0100
commit6f1589971cd6b7a4d63c8a11374305d9d4790c33 (patch)
treef936ff7a39c70ad0cd41dffd20acce8355fa7585 /src/view/com/lists/ProfileLists.tsx
parent2ffb98e22acd5f9266ee976601016345a19f5927 (diff)
downloadvoidsky-6f1589971cd6b7a4d63c8a11374305d9d4790c33.tar.zst
Fix missing top borders (#4346)
Diffstat (limited to 'src/view/com/lists/ProfileLists.tsx')
-rw-r--r--src/view/com/lists/ProfileLists.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx
index 8c3a151fa..e7fdfe4bd 100644
--- a/src/view/com/lists/ProfileLists.tsx
+++ b/src/view/com/lists/ProfileLists.tsx
@@ -14,7 +14,7 @@ import {useQueryClient} from '@tanstack/react-query'
 import {cleanError} from '#/lib/strings/errors'
 import {useTheme} from '#/lib/ThemeContext'
 import {logger} from '#/logger'
-import {isNative} from '#/platform/detection'
+import {isNative, isWeb} from '#/platform/detection'
 import {RQKEY, useProfileListsQuery} from '#/state/queries/profile-lists'
 import {useAnalytics} from 'lib/analytics/analytics'
 import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
@@ -170,7 +170,7 @@ export const ProfileLists = React.forwardRef<SectionRef, ProfileListsProps>(
             list={item}
             testID={`list-${item.name}`}
             style={styles.item}
-            noBorder={index === 0}
+            noBorder={index === 0 && !isWeb}
           />
         )
       },