fix: change undefined css class

This commit is contained in:
Mo
2022-06-02 11:00:06 -05:00
parent ed5f6495aa
commit 94199fb6b5
5 changed files with 9 additions and 9 deletions

View File

@@ -87,7 +87,7 @@ const ErroredItems: FunctionComponent<Props> = ({ viewControllerManager }: Props
}}
/>
</div>
<HorizontalSeparator classes="mt-5 mb-3" />
<HorizontalSeparator classes="mt-2.5 mb-3" />
{erroredItems.map((item, index) => {
return (
@@ -128,7 +128,7 @@ const ErroredItems: FunctionComponent<Props> = ({ viewControllerManager }: Props
</div>
</div>
</div>
{index < erroredItems.length - 1 && <HorizontalSeparator classes="mt-5 mb-3" />}
{index < erroredItems.length - 1 && <HorizontalSeparator classes="mt-2.5 mb-3" />}
</Fragment>
)
})}