fix: manual streams

This commit is contained in:
2024-03-12 22:42:58 +00:00
parent 9bfed646d1
commit 345c1d58bf
8 changed files with 169 additions and 46 deletions

View File

@ -6,7 +6,7 @@ import { useRequestBuilder } from "@snort/system-react";
import { useUserEmojiPacks } from "@/hooks/emoji";
import { MUTED, USER_CARDS, USER_EMOJIS } from "@/const";
import type { Tags } from "@/types";
import { getPublisher, Login } from "@/login";
import { getPublisher, getSigner, Login } from "@/login";
export function useLogin() {
const session = useSyncExternalStore(
@ -19,6 +19,9 @@ export function useLogin() {
publisher: () => {
return getPublisher(session);
},
signer: () => {
return getSigner(session);
},
};
}