Resolve all remaining lint issues (#88)

* Rework 'navIdx' variables from number arrays to strings to avoid equality-check failures in react hooks

* Resolve all remaining lint issues

* Fix tests

* Use node v18 in gh action test
This commit is contained in:
Paul Frazee 2023-01-24 13:00:11 -06:00 committed by GitHub
parent 3a90114f3a
commit f36c956536
60 changed files with 478 additions and 482 deletions

View file

@ -1,5 +1,5 @@
import React from 'react'
import {Button, View} from 'react-native'
import {Button, StyleSheet, View} from 'react-native'
import {ViewHeader} from '../com/util/ViewHeader'
import {Text} from '../com/util/text/Text'
import {useStores} from '../../state'
@ -9,13 +9,8 @@ export const NotFound = () => {
return (
<View testID="notFoundView">
<ViewHeader title="Page not found" />
<View
style={{
justifyContent: 'center',
alignItems: 'center',
paddingTop: 100,
}}>
<Text style={{fontSize: 40, fontWeight: 'bold'}}>Page not found</Text>
<View style={styles.container}>
<Text style={styles.title}>Page not found</Text>
<Button
testID="navigateHomeButton"
title="Home"
@ -25,3 +20,15 @@ export const NotFound = () => {
</View>
)
}
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
paddingTop: 100,
},
title: {
fontSize: 40,
fontWeight: 'bold',
},
})