diff options
author | Seth Arnold <seth.arnold@gmail.com> | 2023-05-30 23:32:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 18:32:46 -0500 |
commit | 1e5c4609a83838c9c9fbffa80e526a15d0a7392f (patch) | |
tree | afabea37be191bd2c9e9ac9c27d801832724d7e9 | |
parent | 762ab3d385946fd05a72a41a32a47352d3bf6135 (diff) | |
download | voidsky-1e5c4609a83838c9c9fbffa80e526a15d0a7392f.tar.zst |
Update ProfileHeader.tsx (#810)
Change error message from "failed to blocK" to "failed to unblock"
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 56036363c..9b4df0989 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -218,7 +218,7 @@ const ProfileHeaderLoaded = observer( onRefreshAll() Toast.show('Account unblocked') } catch (e: any) { - store.log.error('Failed to block account', e) + store.log.error('Failed to unblock account', e) Toast.show(`There was an issue! ${e.toString()}`) } }, |