Commit 6f1d745f authored by tizah's avatar tizah Committed by GitHub

adding a condition to fix ci build

parent 5a6953c9
...@@ -356,20 +356,22 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { ...@@ -356,20 +356,22 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => {
{result.currentFile && result.currentFile} {result.currentFile && result.currentFile}
</span> </span>
</div> </div>
<div className="" > { Object.entries(warningState).length > 0 &&
<div className="mb-4" > <div id='staticanalysisresult' >
{ <div className="mb-4 warning">
(Object.entries(warningState).map((element) => ( {
<> (Object.entries(warningState).map((element) => (
<span className="text-dark h6">{element[0]}</span> <>
{element[1].map(x => ( <span className="text-dark h6">{element[0]}</span>
x.hasWarning ? (<ErrorRenderer message={x.msg} opt={x.options} warningErrors={ x.warningErrors}/>) : null {element[1].map(x => (
))} x.hasWarning ? (<ErrorRenderer message={x.msg} opt={x.options} warningErrors={ x.warningErrors}/>) : null
</> ))}
))) </>
} )))
}
</div>
</div> </div>
</div> }
</div> </div>
) )
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment