Improves form submissions and updates dependencies (#1209)

This commit is contained in:
Lee Robinson
2023-10-10 21:45:55 -05:00
committed by GitHub
parent ece49c4265
commit 1f47796529
13 changed files with 871 additions and 935 deletions

View File

@@ -19,7 +19,11 @@ export default function FilterList({ list, title }: { list: ListItem[]; title?:
return (
<>
<nav>
{title ? <h3 className="hidden text-xs text-neutral-500 md:block">{title}</h3> : null}
{title ? (
<h3 className="hidden text-xs text-neutral-500 dark:text-neutral-400 md:block">
{title}
</h3>
) : null}
<ul className="hidden md:block">
<FilterItemList list={list} />
</ul>