Add separate description prop for ErrorCard, lighten header line, fix typo

This commit is contained in:
2023-08-26 00:18:18 -05:00
parent 268658cc5c
commit 425240e39b
2 changed files with 15 additions and 7 deletions

View File

@@ -52,8 +52,8 @@ const Index: NextPage = () => {
/>
{error != null ? (
<ErrorCard
title="An error ocurred while performing a lookup."
issues={[error]}
title="An error occurred while performing a lookup."
description={error}
/>
) : null}
{response != null ? <Generic data={response} /> : null}