From b88c87da21e22956c4a8a8b439cc0744308bcd14 Mon Sep 17 00:00:00 2001 From: Brayd Date: Tue, 27 Jun 2023 12:21:28 +0000 Subject: [PATCH] change: hide replies in timeline Hide replies in timeline per default due to being more straightforward for people comming from other Fediverse platforms. Also reduces amount of "posts" in timeline, linking to one "viral" post. --- packages/client/src/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 044a98356..25ed55307 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -340,7 +340,7 @@ export const defaultStore = markRaw( }, showTimelineReplies: { where: "device", - default: true, + default: false, }, }), );