mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Okechukwu Somtochukwu and committed by
GitHub
8258317c 072682dd

+2 -2
+2 -2
src/view/com/profile/FollowButton.tsx
··· 33 33 store.me.follows.removeFollow(did) 34 34 onToggleFollow?.(false) 35 35 } catch (e: any) { 36 - store.log.error('Failed fo delete follow', e) 36 + store.log.error('Failed to delete follow', e) 37 37 Toast.show('An issue occurred, please try again.') 38 38 } 39 39 } else if (updatedFollowState === FollowState.NotFollowing) { ··· 42 42 store.me.follows.addFollow(did, res.uri) 43 43 onToggleFollow?.(true) 44 44 } catch (e: any) { 45 - store.log.error('Failed fo create follow', e) 45 + store.log.error('Failed to create follow', e) 46 46 Toast.show('An issue occurred, please try again.') 47 47 } 48 48 }