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

This commit is contained in:
Okechukwu Somtochukwu
2023-05-31 00:26:40 +00:00
committed by GitHub
parent 072682dd9f
commit 8258317c38
+2 -2
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.')
}
}