Skip to content

Commit 4c71766

Browse files
authored
fix(home): correct theme value check for project limit (#2478)
1 parent 5b04f18 commit 4c71766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/nuxt/src/components/home/TeeHomeProjectList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const { projects, hasError } = storeToRefs(useProjectStore())
5656
const { hasSpinner } = storeToRefs(useNavigationStore())
5757
const { isDataFull } = storeToRefs(useCompanyDataStore())
5858
59-
const limit = computed(() => (theme === undefined ? 8 : 9))
59+
const limit = computed(() => (theme.value === undefined ? 8 : 9))
6060
6161
const filteredProjects = ProjectFilter.filter(projects, theme)
6262

0 commit comments

Comments
 (0)