Skip to content

Commit

Permalink
πŸ› fix: Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed Dec 6, 2023
1 parent 119a144 commit ba6dd2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Sponsor/Avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CSSProperties, FC } from 'react';
import type { CSSProperties, FC } from 'react';

import { theme } from '@/Sponsor/style';
import { theme } from './style';

interface AvatarProps {
name: string;
Expand Down
6 changes: 3 additions & 3 deletions src/Sponsor/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CSSProperties, FC } from 'react';
import type { CSSProperties, FC } from 'react';

import { Avatar } from '@/Sponsor/Avatar';
import { theme } from '@/Sponsor/style';
import { Avatar } from './Avatar';
import { theme } from './style';

interface MemberProfile {
MemberId: number;
Expand Down

0 comments on commit ba6dd2b

Please sign in to comment.