Skip to content

Commit

Permalink
Fixing Build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanyoung-dev committed May 9, 2024
1 parent e8907ff commit 535574f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Box, Button, Card, CardBody, CardFooter, Container, Heading, Image, Link, SimpleGrid, Stack, Text, useBreakpointValue } from '@chakra-ui/react';
import { FC } from 'react';
import { ICategory } from '../../../interfaces';
import { Box, Button, Card, CardBody, Image, Text, CardFooter, Container, Heading, Link, SimpleGrid, Stack, useBreakpointValue } from '@chakra-ui/react';

interface CategoryCardsProps {
categories: ICategory[];
Expand Down
7 changes: 3 additions & 4 deletions apps/web/src/components/blogs/CategoryList/CategoryList.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { Button, Wrap } from '@chakra-ui/react';
import _ from 'lodash';
import Link from 'next/link';
import { FC } from 'react';
import { Category } from '../../../../models/Category';
import _ from 'lodash';
import { Badge, Button, Stack, Wrap } from '@chakra-ui/react';
import { ICategory } from '../../../interfaces';

interface CategoriesProps {
AllCategories: Category[];
AllCategories: ICategory[];
}

const Categories: FC<CategoriesProps> = ({ AllCategories }) => {
Expand Down

0 comments on commit 535574f

Please sign in to comment.