Merge pull request #1934 from rehanrehman389/fix/jobs

fix: skip closed jobs API call for guest users
This commit is contained in:
Jannat Patel
2025-12-23 10:37:49 +05:30
committed by GitHub

View File

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