Fix some low-hanging type errors

This commit is contained in:
Eric Bailey
2023-11-17 10:42:14 -06:00
parent 6c8f043e37
commit 54bf784faf
7 changed files with 20 additions and 7 deletions
+3 -1
View File
@@ -79,7 +79,9 @@ export function Component({text, href}: {text: string; href: string}) {
<Button
testID="cancelBtn"
type="default"
onPress={() => closeModal()}
onPress={() => {
closeModal()
}}
accessibilityLabel={_(msg`Cancel`)}
accessibilityHint=""
label="Cancel"