Skip to content

Commit

Permalink
fix(ui/settings/Developer): apply rounded corners fix
Browse files Browse the repository at this point in the history
React Native bugs :/
  • Loading branch information
PalmDevs authored Sep 15, 2024
1 parent 333a391 commit d968d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/ui/settings/pages/Developer/AssetBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function AssetBrowser() {
/>
{/* TODO: Fix this, don't know why borderRadius is not working */}
<FlatList
style={{ borderRadius: 12, paddingHorizontal: 12, overflow: 'hidden' }}
style={{ borderRadius: 16, paddingHorizontal: 12, overflow: 'hidden', background: 'transparent' }}
data={Object.values(assetsMap).filter(a => a.name.includes(search) || a.id.toString() === search)}
// contentContainerStyle={{ borderRadius: 12, paddingHorizontal: 12, overflow: 'hidden' }}
renderItem={({ item }: any) => <AssetDisplay asset={item} />}
Expand Down

0 comments on commit d968d18

Please sign in to comment.