diff --git a/packages/frontend/src/ui/deck/list-column.vue b/packages/frontend/src/ui/deck/list-column.vue
index 5d3ca76b4464..14bc6917a35d 100644
--- a/packages/frontend/src/ui/deck/list-column.vue
+++ b/packages/frontend/src/ui/deck/list-column.vue
@@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ column.name }}
-
+
@@ -28,7 +28,6 @@ const props = defineProps<{
let timeline = $shallowRef>();
const withRenotes = $ref(props.column.withRenotes ?? true);
-const withReplies = $ref(props.column.withReplies ?? true);
if (props.column.listId == null) {
setList();
@@ -40,11 +39,6 @@ watch($$(withRenotes), v => {
});
});
-watch($$(withReplies), v => {
- updateColumn(props.column.id, {
- withReplies: v,
- });
-});
async function setList() {
const lists = await os.api('users/lists/list');
const { canceled, result: list } = await os.select({
@@ -80,10 +74,5 @@ const menu = [
text: i18n.ts.showRenotes,
ref: $$(withRenotes),
},
- {
- type: 'switch',
- text: i18n.ts.withReplies,
- ref: $$(withReplies),
- },
];