Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pdambrauskas committed Oct 9, 2024
1 parent 12bad83 commit 4f47c94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/PageHeading.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Heading, HeadingProps} from '@chakra-ui/layout';
import {ReactNode} from 'react';
import {Heading, HeadingProps} from '@chakra-ui/react';

interface Props {
children: ReactNode;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Pagination.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {Spacer, Stack} from '@chakra-ui/layout';
import React from 'react';
import {generatePath} from 'react-router';
import {toQueryString, useQueryString} from '../hooks/common';
import ButtonLink from './ButtonLink';
import {Spacer, Stack} from '@chakra-ui/react';

interface PaginationProps {
path: string;
Expand Down

0 comments on commit 4f47c94

Please sign in to comment.