feat: add special follow feed

This commit is contained in:
codytseng
2025-12-15 22:46:04 +08:00
parent 4eb68d36d4
commit dbcb48d599
8 changed files with 144 additions and 4 deletions

View File

@@ -107,7 +107,7 @@ export type TAccount = {
export type TAccountPointer = Pick<TAccount, 'pubkey' | 'signerType'>
export type TFeedType = 'following' | 'relays' | 'relay'
export type TFeedType = 'following' | 'pinned' | 'relays' | 'relay'
export type TFeedInfo = { feedType: TFeedType; id?: string } | null
export type TLanguage = 'en' | 'zh' | 'pl'