Skip to content

Commit

Permalink
PATCH: Convert severity to lowerCase in `legacy__redirectReduxFlashMe…
Browse files Browse the repository at this point in the history
…ssagesToHighLevelApiCall`
  • Loading branch information
grebaldi committed Jun 6, 2024
1 parent 5e8e166 commit 94cee9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neos-ui-sagas/src/UI/FlashMessages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function * legacy__redirectReduxFlashMessagesToHighLevelApiCall() {
showFlashMessage({
id: action.payload.id,
message: action.payload.message,
severity: action.payload.severity as Severity,
severity: action.payload.severity.toLowerCase() as Severity,
timeout: action.payload.timeout
});
}
Expand Down

0 comments on commit 94cee9b

Please sign in to comment.