authorization of users

This commit is contained in:
2023-07-12 15:28:45 +03:30
parent 6c32a374de
commit 69b97b8fe2
10 changed files with 13 additions and 23 deletions

View File

@@ -37,14 +37,14 @@ const WithoutAuthMiddleware = ({ children }) => {
<Stack alignItems="center" spacing={2}>
<Typography sx={{ textAlign: "center" }}>
{t(
"typography_your_login_is_valid_and_you_do_not_need_to_login_again"
"Authorization.typography_your_login_is_valid_and_you_do_not_need_to_login_again"
)}
</Typography>
<Typography>
{t("typography_redirect_to")}{" "}
{t("Authorization.typography_redirect_to")}{" "}
{backUrlDecodedPath
? t("typography_routing_previuos_page")
: t("typography_routing_dashbaord_page")}
? t("Authorization.typography_routing_previuos_page")
: t("Authorization.typography_routing_dashbaord_page")}
</Typography>
</Stack>
}