diff --git a/CHANGELOG_YOJO.md b/CHANGELOG_YOJO.md
index db16ddcee0..4dc81aea4c 100644
--- a/CHANGELOG_YOJO.md
+++ b/CHANGELOG_YOJO.md
@@ -80,6 +80,7 @@ docker環境でノートレコードが多数(数百万件)ある場合**一時
- `excludeQuote` 引用除外 true/false
- `strictSearch` 表記ゆれ検索有効 true/false
- Enhance: 非ログイン時に動きのあるMFMを動かすか選べるように [#508](https://github.com/yojo-art/cherrypick/pull/508)
+- Fix: デフォルトの公開範囲から連合なしを削除 [#532](https://github.com/yojo-art/cherrypick/pull/532)
### Server
- Change: `notes/advanced-search`で`query`が必須ではなくなりました [#496](https://github.com/yojo-art/cherrypick/pull/496)
diff --git a/packages/frontend/src/pages/settings/privacy.vue b/packages/frontend/src/pages/settings/privacy.vue
index 0ae6c4b766..44ae408acf 100644
--- a/packages/frontend/src/pages/settings/privacy.vue
+++ b/packages/frontend/src/pages/settings/privacy.vue
@@ -77,7 +77,6 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts._visibility.disableFederation }}
{{ i18n.ts.rememberNoteSearchbility }}
@@ -134,7 +133,6 @@ const searchableBy = ref($i.searchableBy);
const defaultNoteVisibility = computed(defaultStore.makeGetterSetter('defaultNoteVisibility'));
const defaultNoteSearchbility = computed(defaultStore.makeGetterSetter('defaultNoteSearchableBy'));
const remenberNoteSearchbility = computed(defaultStore.makeGetterSetter('rememberNoteSearchableBy'));
-const defaultNoteLocalOnly = computed(defaultStore.makeGetterSetter('defaultNoteLocalOnly'));
const rememberNoteVisibility = computed(defaultStore.makeGetterSetter('rememberNoteVisibility'));
const keepCw = computed(defaultStore.makeGetterSetter('keepCw'));