diff --git a/src/app/directory/create/CreateContactSelector.tsx b/src/app/directory/create/CreateContactSelector.tsx index 5d5f7071..2d0735c5 100644 --- a/src/app/directory/create/CreateContactSelector.tsx +++ b/src/app/directory/create/CreateContactSelector.tsx @@ -16,7 +16,7 @@ import { Website, Youtube, type logoProps, -} from '@src/components/ContactIcons'; +} from '@src/icons/ContactIcons'; import { type Control, type UseFormRegister, diff --git a/src/app/manage/[clubId]/edit/EditContactSelector.tsx b/src/app/manage/[clubId]/edit/EditContactSelector.tsx index 8bd2d1d4..3e03c38b 100644 --- a/src/app/manage/[clubId]/edit/EditContactSelector.tsx +++ b/src/app/manage/[clubId]/edit/EditContactSelector.tsx @@ -23,7 +23,7 @@ import { Website, Youtube, type logoProps, -} from '@src/components/ContactIcons'; +} from '@src/icons/ContactIcons'; import { type modifyDeletedAction } from '@src/app/manage/[clubId]/edit/EditContactForm'; import { type editClubContactSchema } from '@src/utils/formSchemas'; diff --git a/src/components/club/listing/ContactButtons.tsx b/src/components/club/listing/ContactButtons.tsx index b526a45c..ea255f59 100644 --- a/src/components/club/listing/ContactButtons.tsx +++ b/src/components/club/listing/ContactButtons.tsx @@ -1,5 +1,5 @@ import type { SelectContact as Contacts } from '@src/server/db/models'; -import { logo } from '../../ContactIcons'; +import { logo } from '@src/icons/ContactIcons'; import Link from 'next/link'; type contentButtonProps = { diff --git a/src/components/ContactIcons.tsx b/src/icons/ContactIcons.tsx similarity index 100% rename from src/components/ContactIcons.tsx rename to src/icons/ContactIcons.tsx