Linting errors

This commit is contained in:
Michael Bumann
2021-11-28 17:39:59 -06:00
parent f7a987bca8
commit f0717e7aa4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import { motion } from 'framer-motion'
import { useAppDispatch } from '../../utils/hooks';
// import { useAppDispatch } from '../../utils/hooks';
import { ModalCard, modalCardVariants } from '../Shared/ModalsContainer/ModalsContainer'
export default function Claim_FundWithdrawCard({ onClose, direction, ...props }: ModalCard) {

View File

@@ -12,7 +12,7 @@ const ALL_CATEGORIES = gql`
export default function Categories() {
const { loading, error, data } = useQuery<AllCategoriesData, ProjectCategory>(ALL_CATEGORIES);
const { loading, data } = useQuery<AllCategoriesData, ProjectCategory>(ALL_CATEGORIES);
const handleClick = (categoryId: string) => {