diff options
author | Okechukwu Somtochukwu <stancoproof@gmail.com> | 2023-05-31 00:26:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 17:26:40 -0700 |
commit | 8258317c38a685c80492b7d5448ae565c8ff6e22 (patch) | |
tree | f45b653236aa5d9a170b35c0ed8932d57a67ebf9 | |
parent | 072682dd9f8843787229a98fbeea24161bc0c9b4 (diff) | |
download | voidsky-8258317c38a685c80492b7d5448ae565c8ff6e22.tar.zst |
[typo] correct typo was 'fo' instead of 'to' (#721)
-rw-r--r-- | src/view/com/profile/FollowButton.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/profile/FollowButton.tsx b/src/view/com/profile/FollowButton.tsx index 7715358cf..fcb2225da 100644 --- a/src/view/com/profile/FollowButton.tsx +++ b/src/view/com/profile/FollowButton.tsx @@ -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.') } } |