diff --git a/components/calendar/category/Table.vue b/components/calendar/category/Table.vue index f048008..bf22252 100644 --- a/components/calendar/category/Table.vue +++ b/components/calendar/category/Table.vue @@ -6,9 +6,7 @@ const { categories } = defineProps<{ categories: Category[] }>() -const sortedCategories = computed(() => { - return categories.toSorted((a, b) => a.name.localeCompare(b.name)) -}) +const sortedCategories = computed(() => categories.toSorted((a, b) => a.name.localeCompare(b.name)))