diff options
Diffstat (limited to 'src/state/queries/list-memberships.ts')
-rw-r--r-- | src/state/queries/list-memberships.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/queries/list-memberships.ts b/src/state/queries/list-memberships.ts index 83a2c2db1..b93dc059d 100644 --- a/src/state/queries/list-memberships.ts +++ b/src/state/queries/list-memberships.ts @@ -101,7 +101,7 @@ export function useListMembershipAddMutation() { >({ mutationFn: async ({listUri, actorDid}) => { if (!currentAccount) { - throw new Error('Not logged in') + throw new Error('Not signed in') } const res = await agent.app.bsky.graph.listitem.create( {repo: currentAccount.did}, @@ -160,7 +160,7 @@ export function useListMembershipRemoveMutation() { >({ mutationFn: async ({membershipUri}) => { if (!currentAccount) { - throw new Error('Not logged in') + throw new Error('Not signed in') } const membershipUrip = new AtUri(membershipUri) await agent.app.bsky.graph.listitem.delete({ |