about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorOkechukwu Somtochukwu <stancoproof@gmail.com>2023-05-31 00:26:40 +0000
committerGitHub <noreply@github.com>2023-05-30 17:26:40 -0700
commit8258317c38a685c80492b7d5448ae565c8ff6e22 (patch)
treef45b653236aa5d9a170b35c0ed8932d57a67ebf9 /src
parent072682dd9f8843787229a98fbeea24161bc0c9b4 (diff)
downloadvoidsky-8258317c38a685c80492b7d5448ae565c8ff6e22.tar.zst
[typo] correct typo was 'fo' instead of 'to' (#721)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/profile/FollowButton.tsx4
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.')
         }
       }