diff --git a/frontend/src/pages/Jobs.vue b/frontend/src/pages/Jobs.vue index 978d90db..ac163b5e 100644 --- a/frontend/src/pages/Jobs.vue +++ b/frontend/src/pages/Jobs.vue @@ -137,6 +137,10 @@ const isModerator = computed(() => { }) const getClosedJobCount = () => { + if (!user.data?.name) { + return + } + const filters = { status: 'Closed', }