nuxt-prawo-jazdy/middleware/result.ts
2025-12-16 20:21:04 +01:00

7 lines
224 B
TypeScript

export default defineNuxtRouteMiddleware(async () => {
const examStore = useExamStore();
const localePath = useLocalePath();
if (!examStore.end || examStore.category === '') {
return localePath('anomaly');
}
});