fix: skip closed jobs API call for guest users

This commit is contained in:
Rehan Ansari
2025-12-22 21:54:11 +05:30
parent 69d0efbfa7
commit e1d160a898

View File

@@ -137,6 +137,10 @@ const isModerator = computed(() => {
})
const getClosedJobCount = () => {
if (!user.data?.name) {
return
}
const filters = {
status: 'Closed',
}