From e2670c90f5e0c04c74c08f3551d81ed92fd9de4c 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, }, }), );