about summary refs log tree commit diff
path: root/src/state/queries/pinned-post.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/state/queries/pinned-post.ts')
-rw-r--r--src/state/queries/pinned-post.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/pinned-post.ts b/src/state/queries/pinned-post.ts
index 7e2c8ee79..7e6fc6677 100644
--- a/src/state/queries/pinned-post.ts
+++ b/src/state/queries/pinned-post.ts
@@ -32,7 +32,7 @@ export function usePinnedPostMutation() {
         updatePostShadow(queryClient, postUri, {pinned: pinCurrentPost})
 
         // get the currently pinned post so we can optimistically remove the pin from it
-        if (!currentAccount) throw new Error('Not logged in')
+        if (!currentAccount) throw new Error('Not signed in')
         const {data: profile} = await agent.getProfile({
           actor: currentAccount.did,
         })