From c5eccff8d032d6076118230aae51bd7e7268cc8b Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 16 Oct 2023 03:00:55 +0900 Subject: [PATCH] fix: add private visibility in defaultStore --- packages/client/src/store.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index da5e73413..3ec4e14e3 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -122,7 +122,12 @@ export const defaultStore = markRaw( }, visibility: { where: "deviceAccount", - default: "public" as "public" | "home" | "followers" | "specified", + default: "public" as + | "public" + | "home" + | "followers" + | "specified" + | "private", }, localOnly: { where: "deviceAccount",