File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -69,12 +69,12 @@ export const ComponentsSelectionContainer: React.FC<ComponentsSelectionProps> =
6969 }
7070
7171 if ( error ) {
72- return < IllustratedError /> ;
72+ return < IllustratedError compact = { true } /> ;
7373 }
7474
7575 // Defensive: If the API returned no items, show error
7676 if ( ! componentsList || componentsList . length === 0 ) {
77- return < IllustratedError title = { t ( 'componentsSelection.cannotLoad' ) } /> ;
77+ return < IllustratedError title = { t ( 'componentsSelection.cannotLoad' ) } compact = { true } /> ;
7878 }
7979
8080 return < ComponentsSelection componentsList = { componentsList } setComponentsList = { setComponentsList } /> ;
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ export default function FluxList() {
136136 < IllustratedError
137137 details = { repoErr ?. message || kustomizationErr ?. message || t ( 'FluxList.undefinedError' ) }
138138 title = { t ( 'FluxList.noFluxError' ) }
139+ compact = { true }
139140 />
140141 ) ;
141142 }
You can’t perform that action at this time.
0 commit comments