DM styles update

This commit is contained in:
2023-08-24 15:25:54 +01:00
parent 0e7aefb036
commit e8e65c71cd
54 changed files with 411 additions and 142 deletions

View File

@ -4,7 +4,6 @@ import { useRequestBuilder } from "@snort/system-react";
import { getNewest } from "SnortUtils";
import useLogin from "Hooks/useLogin";
import { System } from "index";
export default function useMutedFeed(pubkey?: HexKey) {
const { publicKey, muted } = useLogin();
@ -17,7 +16,7 @@ export default function useMutedFeed(pubkey?: HexKey) {
return b;
}, [pubkey]);
const mutedFeed = useRequestBuilder<NoteCollection>(System, NoteCollection, sub);
const mutedFeed = useRequestBuilder(NoteCollection, sub);
const mutedList = useMemo(() => {
if (pubkey && mutedFeed.data) {