From c183633efc434ec988ae40a06ce8748bfe537731 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Fri, 27 Jan 2023 14:46:59 +0100 Subject: [PATCH] fix: use standard mute list tag --- src/Feed/MuteList.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Feed/MuteList.ts b/src/Feed/MuteList.ts index 4b71f5f2..40134593 100644 --- a/src/Feed/MuteList.ts +++ b/src/Feed/MuteList.ts @@ -7,7 +7,7 @@ import { Subscriptions } from "Nostr/Subscriptions"; import type { RootState } from "State/Store"; import useSubscription, { NoteStore } from "Feed/Subscription"; -export const MUTE_LIST_TAG = "mute" +export const MUTE_LIST_TAG = "p:mute" export default function useMutedFeed(pubkey: HexKey) { const loginPubkey = useSelector((s: RootState) => s.login.publicKey)