diff options
Diffstat (limited to 'src/state/queries/pinned-post.ts')
-rw-r--r-- | src/state/queries/pinned-post.ts | 2 |
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, }) |