fix: linter

This commit is contained in:
Hussain Nagaria
2025-03-12 14:40:45 +05:30
parent be9525dbf2
commit 1dbe2f31d0
2 changed files with 6 additions and 4 deletions

View File

@@ -120,7 +120,10 @@ const currentCategory = ref(null)
const title = ref('')
const certification = ref(false)
const filters = ref({})
const currentTab = useRouteQuery('tab', user.data?.is_student ? 'All' : 'Upcoming')
const currentTab = useRouteQuery(
'tab',
user.data?.is_student ? 'All' : 'Upcoming'
)
const orderBy = ref('start_date')
onMounted(() => {
@@ -251,7 +254,7 @@ const setQueryParams = () => {
}
})
let queryString = '';
let queryString = ''
if (queries.toString()) {
queryString = `?${queries.toString()}`
}

View File

@@ -256,8 +256,7 @@ const setQueryParams = () => {
}
})
let queryString = '';
let queryString = ''
if (queries.toString()) {
queryString = `?${queries.toString()}`
}