{{ t('page.result.text.info') }}
diff --git a/front/pages/index.vue b/front/pages/index.vue
index 6b57e81..bfaed2c 100644
--- a/front/pages/index.vue
+++ b/front/pages/index.vue
@@ -11,7 +11,7 @@ import { isString } from 'lodash-es'
const route = useRoute()
const router = useRouter()
const type = computed(() => route?.query?.type)
-onMounted(() => {
+watchEffect(() => {
if (!isString(type.value) || type.value?.length === 0) {
router.push({ query: { type: 'file' }, replace: true })
}