[typo] correct typo was 'fo' instead of 'to' (#721)

zio/stable
Okechukwu Somtochukwu 2023-05-31 00:26:40 +00:00 committed by GitHub
parent 072682dd9f
commit 8258317c38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export const FollowButton = observer(
store.me.follows.removeFollow(did)
onToggleFollow?.(false)
} catch (e: any) {
store.log.error('Failed fo delete follow', e)
store.log.error('Failed to delete follow', e)
Toast.show('An issue occurred, please try again.')
}
} else if (updatedFollowState === FollowState.NotFollowing) {
@ -42,7 +42,7 @@ export const FollowButton = observer(
store.me.follows.addFollow(did, res.uri)
onToggleFollow?.(true)
} catch (e: any) {
store.log.error('Failed fo create follow', e)
store.log.error('Failed to create follow', e)
Toast.show('An issue occurred, please try again.')
}
}