nuxt-prawo-jazdy/middleware/result.ts
NetMan ccccf038d9 ui i18n english, fix locale routes, theme toggle
minor:
- change background for category list for dark theme compatibility
- try to 'fix' video playback errors in console
2025-12-16 09:32:27 +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');
}
});