From 3304da8a406ab9446a2904f77c68d7bd5b6cf0d3 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Sat, 4 Feb 2023 00:36:29 +0100 Subject: [PATCH] note to self --- src/Feed/LoginFeed.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Feed/LoginFeed.ts b/src/Feed/LoginFeed.ts index 4d212efc..1e50bb01 100644 --- a/src/Feed/LoginFeed.ts +++ b/src/Feed/LoginFeed.ts @@ -41,7 +41,8 @@ export default function useLoginFeed() { let sub = new Subscriptions(); sub.Id = "login:notifications"; - sub.Kinds = new Set([EventKind.TextNote, EventKind.ZapReceipt]); + // todo: add zaps + sub.Kinds = new Set([EventKind.TextNote]); sub.PTags = new Set([pubKey]); sub.Limit = 1; return sub;