diff options
author | Eric Bailey <git@esb.lol> | 2024-05-14 09:22:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 09:22:09 -0500 |
commit | 9173be686c1df9adc6cbb9cc2175f8909a868c35 (patch) | |
tree | 25ea67a686969a086249769a1a3a445cd819a9ff /src/state/queries/messages/temp-headers.ts | |
parent | 107760d551dee695f76409337048cd8c7917b784 (diff) | |
download | voidsky-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.ts | 11 |
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 - }, - } -} |