fix: url redirection authenticated view

This commit is contained in:
starnakin 2024-02-13 16:02:56 +01:00 committed by AdrienLSH
parent ebddae83f3
commit 7f22a5c40b

View File

@ -2,7 +2,7 @@ import { client, navigateTo } from "../../index.js";
import AbstractRedirectView from "./AbstractRedirectView.js";
export default class extends AbstractRedirectView{
constructor(params, title, uri = "/home") {
constructor(params, title, uri = "/login") {
super(params, title, uri);
}