🐛 fix(error): fix formatting issue in ErrorAlert component
This commit is contained in:
parent
6c17949d21
commit
55164fdfa3
1 changed files with 2 additions and 1 deletions
|
|
@ -51,7 +51,8 @@ export default function ErrorAlert({
|
|||
</div>
|
||||
<div className="ml-3">
|
||||
<h3 className="error-build-foreground">{title}</h3>
|
||||
{list?.length !== 0 && list?.some(item => item !== null && item !== undefined) ? (
|
||||
{list?.length !== 0 &&
|
||||
list?.some((item) => item !== null && item !== undefined) ? (
|
||||
<div className="error-build-message-div">
|
||||
<ul className="error-build-message-list">
|
||||
{list.map((item, index) => (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue