add all suppress modal
All checks were successful
Deploy Amap / deploy (push) Successful in 41s

This commit is contained in:
Julien Aldon
2026-03-06 16:48:38 +01:00
parent 74bf1474e2
commit 46b369ecd9
39 changed files with 654 additions and 372 deletions

View File

@@ -14,21 +14,23 @@ export function Home() {
useEffect(() => {
if (searchParams.get("sessionExpired")) {
showNotification({
title: t("session expired", {capfirst: true}),
message: t("your session has expired please log in again", {capfirst: true}),
title: t("session expired", { capfirst: true }),
message: t("your session has expired please log in again", { capfirst: true }),
color: "red",
autoClose: 5000,
});
}
if (searchParams.get("userNotAllowed")) {
showNotification({
title: t("user not allowed", {capfirst: true}),
message: t("your keycloak user has no roles, please contact your administrator", {capfirst: true}),
title: t("user not allowed", { capfirst: true }),
message: t("your keycloak user has no roles, please contact your administrator", {
capfirst: true,
}),
color: "red",
autoClose: 5000,
});
}
}, [searchParams])
}, [searchParams]);
return (
<Stack mt="lg">