about summary refs log tree commit diff
path: root/src/state/queries/list.ts
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2025-02-18 01:52:06 +0900
committerGitHub <noreply@github.com>2025-02-17 10:52:06 -0600
commitd805dec08fa58dd0828eabc8b56d9a5abd81f825 (patch)
tree7c78f1b8f32b859bee03a3c8f0c4e4baafeb0f4a /src/state/queries/list.ts
parent326445d3af894080a5487b403e094000cda1f765 (diff)
downloadvoidsky-d805dec08fa58dd0828eabc8b56d9a5abd81f825.tar.zst
Fix "log in", "log out" to "sign in", "sign out" (#7739)
* log to sign

* logged to signed
Diffstat (limited to 'src/state/queries/list.ts')
-rw-r--r--src/state/queries/list.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/queries/list.ts b/src/state/queries/list.ts
index 405cb4ae3..be7542880 100644
--- a/src/state/queries/list.ts
+++ b/src/state/queries/list.ts
@@ -60,7 +60,7 @@ export function useListCreateMutation() {
         avatar,
       }) {
         if (!currentAccount) {
-          throw new Error('Not logged in')
+          throw new Error('Not signed in')
         }
         if (
           purpose !== 'app.bsky.graph.defs#curatelist' &&
@@ -126,7 +126,7 @@ export function useListMetadataMutation() {
     async mutationFn({uri, name, description, descriptionFacets, avatar}) {
       const {hostname, rkey} = new AtUri(uri)
       if (!currentAccount) {
-        throw new Error('Not logged in')
+        throw new Error('Not signed in')
       }
       if (currentAccount.did !== hostname) {
         throw new Error('You do not own this list')