about summary refs log tree commit diff
path: root/src/view/com/profile/ProfileHeader.tsx
diff options
context:
space:
mode:
authorSeth Arnold <seth.arnold@gmail.com>2023-05-30 23:32:46 +0000
committerGitHub <noreply@github.com>2023-05-30 18:32:46 -0500
commit1e5c4609a83838c9c9fbffa80e526a15d0a7392f (patch)
treeafabea37be191bd2c9e9ac9c27d801832724d7e9 /src/view/com/profile/ProfileHeader.tsx
parent762ab3d385946fd05a72a41a32a47352d3bf6135 (diff)
downloadvoidsky-1e5c4609a83838c9c9fbffa80e526a15d0a7392f.tar.zst
Update ProfileHeader.tsx (#810)
Change error message from "failed to blocK" to "failed to unblock"
Diffstat (limited to 'src/view/com/profile/ProfileHeader.tsx')
-rw-r--r--src/view/com/profile/ProfileHeader.tsx2
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()}`)
           }
         },