Upgrade prisma. Lint fixes.

This commit is contained in:
Mike Cao 2023-11-30 21:58:11 -08:00
parent a3b5f05a32
commit a224a3caf3
11 changed files with 56 additions and 51 deletions

View file

@ -7,7 +7,7 @@ export function ErrorMessage() {
return (
<div className={styles.error}>
<Icon className={styles.icon} size="large">
<Icon className={styles.icon} size="lg">
<Icons.Alert />
</Icon>
<Text>{formatMessage(messages.error)}</Text>

View file

@ -10,9 +10,9 @@ import styles from './FilterLink.module.css';
export interface FilterLinkProps {
id: string;
value: string;
label: string;
externalUrl: string;
className: string;
label?: string;
externalUrl?: string;
className?: string;
children: ReactNode;
}

View file

@ -1,7 +1,6 @@
import { Button, Icon } from 'react-basics';
import { Button, Icon, Icons } from 'react-basics';
import { useState } from 'react';
import MobileMenu from './MobileMenu';
import Icons from 'components/icons';
export function HamburgerButton({ menuItems }: { menuItems: any[] }) {
const [active, setActive] = useState(false);