Skip to content

Commit

Permalink
fix: index for people modal
Browse files Browse the repository at this point in the history
  • Loading branch information
hopetambala committed Mar 28, 2021
1 parent 008db3e commit bb643e7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {

import PaperButton from '../../../../../../components/Button';
import { theme } from '../../../../../../modules/theme';
import { generateRandomID } from '../../../../../../modules/utils';

const PeopleModal = ({
people,
Expand All @@ -23,7 +22,7 @@ const PeopleModal = ({
<Appbar.Content title="People Manager" subtitle="" titleStyle={{ fontSize: 20, fontWeight: 'bold' }} />
</Appbar.Header>
{people.map((x, i) => (
<ScrollView key={`${x}_${i}`} style={{ margin: 20 }}>
<ScrollView key={`${x}_${i}`} style={{ margin: 20 }}> {/*eslint-disable-line*/}
<KeyboardAvoidingView>
<TextInput
label="First Name"
Expand Down

0 comments on commit bb643e7

Please sign in to comment.