From b6b0a54101a810b2c66ec0a2a4aab7015a7b3ba8 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Sun, 30 Mar 2025 02:08:28 -0400 Subject: [PATCH] restore following column type --- packages/frontend/src/deck.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/frontend/src/deck.ts b/packages/frontend/src/deck.ts index 1118082c0d..269a763ce7 100644 --- a/packages/frontend/src/deck.ts +++ b/packages/frontend/src/deck.ts @@ -39,6 +39,7 @@ export const columnTypes = [ 'mentions', 'direct', 'roleTimeline', + 'following', ] as const; export type ColumnType = typeof columnTypes[number];