Fix home redirect in browser (#2008)

This commit is contained in:
Frank Noirot
2024-04-03 20:41:40 -04:00
committed by GitHub
parent f03f34d8be
commit e0838c1198

View File

@ -138,7 +138,7 @@ export const homeLoader: LoaderFunction = async (): Promise<
HomeLoaderData | Response
> => {
if (!isTauri()) {
return redirect(paths.FILE + '/' + BROWSER_PROJECT_NAME)
return redirect(paths.FILE + '/%2F' + BROWSER_PROJECT_NAME)
}
const settings = await loadAndValidateSettings()