From cf170ec1fe22e1d7f021ccca4560624ba2754370 Mon Sep 17 00:00:00 2001 From: ksalk Date: Mon, 12 Jan 2026 13:31:24 +0000 Subject: [PATCH] Use all X accounts defined --- src/config/accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/accounts.ts b/src/config/accounts.ts index db3aa71..d35210d 100644 --- a/src/config/accounts.ts +++ b/src/config/accounts.ts @@ -51,7 +51,7 @@ const ALL_TECH_ACCOUNTS: TechAccount[] = [ { username: 'jason_f', displayName: 'Jason Fried', category: 'general_tech', priority: 'medium' }, ]; -export const TECH_ACCOUNTS: TechAccount[] = ALL_TECH_ACCOUNTS.slice(0, 8); +export const TECH_ACCOUNTS: TechAccount[] = ALL_TECH_ACCOUNTS; export function getAccountsByCategory(category: TechAccount['category']): TechAccount[] { return TECH_ACCOUNTS.filter((account) => account.category === category);