Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sverben committed May 25, 2024
1 parent 857ea8f commit 2dc81e8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/screens/feed/slot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,12 @@ export default function SlotScreen({ route, navigation }: Props) {
<Card.Content>
<PaperSelect
label={"Lid handmatig aanmelden"}
arrayList={members.sort((a, b) => a.name < b.name ? -1 : 1) .map(({ id, name }) => ({
_id: id.toString(),
value: name,
}))}
arrayList={members
.sort((a, b) => (a.name < b.name ? -1 : 1))
.map(({ id, name }) => ({
_id: id.toString(),
value: name,
}))}
selectedArrayList={[]}
multiEnable={false}
value={""}
Expand Down

0 comments on commit 2dc81e8

Please sign in to comment.