0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 07:22:44 +00:00

Fix error listing

This commit is contained in:
G.Ambatte
2025-01-07 18:01:17 +13:00
parent 40d453bc7c
commit d9b599e814

View File

@@ -18,7 +18,7 @@ const ErrorBar = (props)=>{
const renderErrors = ()=>(
<ul>
{props.errors.map((err, idx)=>{
<li key={idx}>
return <li key={idx}>
Line {err.line} : {err.text}, '{err.type}' tag
</li>;
})}