Simplify SetItem

It had a pointless react fragment
wrapping it's only element.
This commit is contained in:
Brandon Presley 2023-07-07 13:41:48 +12:00
parent 09354829a8
commit 1b2cbab370
1 changed files with 28 additions and 30 deletions

View File

@ -43,7 +43,6 @@ export default function SetItem({
}, [dark, ids, item.id]) }, [dark, ids, item.id])
return ( return (
<>
<List.Item <List.Item
onPress={press} onPress={press}
title={item.name} title={item.name}
@ -73,6 +72,5 @@ export default function SetItem({
</> </>
)} )}
/> />
</>
) )
} }