Merge pull request #1934 from rehanrehman389/fix/jobs
fix: skip closed jobs API call for guest users
This commit is contained in:
@@ -137,6 +137,10 @@ const isModerator = computed(() => {
|
||||
})
|
||||
|
||||
const getClosedJobCount = () => {
|
||||
if (!user.data?.name) {
|
||||
return
|
||||
}
|
||||
|
||||
const filters = {
|
||||
status: 'Closed',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user