Skip to content

Commit f272d8a

Browse files
authored
fix some lint errors
1 parent ccce777 commit f272d8a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

source/views/settings/credits.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ const Contributors = glamorous(About)({
5858

5959
const formatPeopleList = arr => arr.map(w => w.replace(' ', ' ')).join(' • ')
6060

61+
type Props = TopLevelViewPropsType
62+
63+
type State = {
64+
supported: boolean,
65+
iconType: null | string,
66+
}
67+
6168
export default class CreditsView extends React.Component<Props, State> {
6269
static navigationOptions = {
6370
title: 'Credits',
@@ -99,7 +106,9 @@ export default class CreditsView extends React.Component<Props, State> {
99106
<Contributors>{formatPeopleList(credits.contributors)}</Contributors>
100107

101108
<Heading>Acknowledgements</Heading>
102-
<Contributors>{formatPeopleList(credits.acknowledgements)}</Contributors>
109+
<Contributors>
110+
{formatPeopleList(credits.acknowledgements)}
111+
</Contributors>
103112
</Container>
104113
)
105114
}

0 commit comments

Comments
 (0)