Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sukbearai committed Oct 31, 2024
1 parent 6762024 commit 89420bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/middleware/redirect.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default defineNuxtRouteMiddleware((to, from) => {
if (to.path !== '/v-screen/data') {
return navigateTo('/v-screen/data')
}
})
export default defineNuxtRouteMiddleware((to) => {
if (to.path !== '/v-screen/data') {
return navigateTo('/v-screen/data')
}
})

0 comments on commit 89420bd

Please sign in to comment.