about summary refs log tree commit diff
path: root/src/state/queries/messages/temp-headers.ts
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-05-14 09:22:09 -0500
committerGitHub <noreply@github.com>2024-05-14 09:22:09 -0500
commit9173be686c1df9adc6cbb9cc2175f8909a868c35 (patch)
tree25ea67a686969a086249769a1a3a445cd819a9ff /src/state/queries/messages/temp-headers.ts
parent107760d551dee695f76409337048cd8c7917b784 (diff)
downloadvoidsky-9173be686c1df9adc6cbb9cc2175f8909a868c35.tar.zst
[🐴] Swap in new package, update usages (#3992)
* Swap in new package, update usages

* Remove uneccessary patch

* Override type in safe place
Diffstat (limited to 'src/state/queries/messages/temp-headers.ts')
-rw-r--r--src/state/queries/messages/temp-headers.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/state/queries/messages/temp-headers.ts b/src/state/queries/messages/temp-headers.ts
deleted file mode 100644
index 9e46e8a61..000000000
--- a/src/state/queries/messages/temp-headers.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import {useSession} from '#/state/session'
-
-// toy auth
-export const useHeaders = () => {
-  const {currentAccount} = useSession()
-  return {
-    get Authorization() {
-      return currentAccount!.did
-    },
-  }
-}