Fix some type errors (#1952)

* Fix some low-hanging type errors

* Override scrollRef types on profile
This commit is contained in:
Eric Bailey 2023-11-17 11:08:45 -06:00 committed by GitHub
parent 6c8f043e37
commit 9c8a1b8a31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 40 additions and 15 deletions

View file

@ -224,7 +224,9 @@ export function Component({showReminder}: {showReminder?: boolean}) {
<Button
testID="cancelBtn"
type="default"
onPress={() => closeModal()}
onPress={() => {
closeModal()
}}
accessibilityLabel={
stage === Stages.Reminder ? 'Not right now' : 'Cancel'
}