changed home button to reload (#38967)

fixes: #38932

Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com>
This commit is contained in:
Erik Jan de Wit 2025-04-15 12:57:07 +02:00 committed by GitHub
parent 86a1e9d209
commit 85a43348b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,8 +32,8 @@ export const ErrorRenderer = ({ error }: FallbackProps) => {
<AlertActionCloseButton title={error.message} onClose={reset} />
}
actionLinks={
<AlertActionLink onClick={() => (location.href = "/")}>
{t("home")}
<AlertActionLink onClick={() => location.reload()}>
{t("reload")}
</AlertActionLink>
}
></Alert>