fix(chart): make chart error banners non-dismissible (#38014)

This commit is contained in:
Enzo Martellucci
2026-02-26 17:01:02 +01:00
committed by GitHub
parent f5d489da29
commit c1c012fb52
13 changed files with 70 additions and 0 deletions

View File

@@ -25,11 +25,13 @@ export function FrontendNetworkErrorMessage({
error,
subtitle,
compact,
closable,
}: ErrorMessageComponentProps) {
const { level, message } = error;
return (
<ErrorAlert
compact={compact}
closable={closable}
errorType={t('Network Error')}
message={message}
type={level}