diff --git a/apps/web/src/components/molecules/SocialIconLink/index.tsx b/apps/web/src/components/molecules/SocialIconLink/index.tsx index 2c03914..7404283 100644 --- a/apps/web/src/components/molecules/SocialIconLink/index.tsx +++ b/apps/web/src/components/molecules/SocialIconLink/index.tsx @@ -1,6 +1,6 @@ import { FunctionComponent, SVGAttributes } from 'react'; -import { LogoType } from '@dnd-academy/core'; +import { type LogoType } from '@dnd-academy/core'; import clsx from 'clsx'; import ExternalLink from '@/components/atoms/ExternalLink'; @@ -58,13 +58,13 @@ function SocialIconLink({ if (!link) { return ( - + ); } return ( - + ); }