From 5facfcfc7220d8614334630672dc2dbde32a0604 Mon Sep 17 00:00:00 2001 From: dutexion Date: Thu, 29 Feb 2024 21:36:36 +0900 Subject: [PATCH] =?UTF-8?q?fix=20::=20=EB=B0=B0=ED=8F=AC=20=EC=8B=9C?= =?UTF-8?q?=EB=8F=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/user/src/apis/project.ts | 4 ++-- packages/user/src/components/Registration/FormRegister.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/user/src/apis/project.ts b/packages/user/src/apis/project.ts index bb6f6c4..b124968 100644 --- a/packages/user/src/apis/project.ts +++ b/packages/user/src/apis/project.ts @@ -1,10 +1,10 @@ import axios from 'axios'; import { instance } from './instance'; -import { projectType } from '../types/projectType'; +import { ProjectRegisterType } from '../types/projectType'; import { toast } from 'react-toastify'; type createProjectType = { - project: projectType; + project: ProjectRegisterType; logo: File; projectImage: File[]; }; diff --git a/packages/user/src/components/Registration/FormRegister.tsx b/packages/user/src/components/Registration/FormRegister.tsx index 0a1fda4..ddd0dfa 100644 --- a/packages/user/src/components/Registration/FormRegister.tsx +++ b/packages/user/src/components/Registration/FormRegister.tsx @@ -7,7 +7,7 @@ import ScreenshotLabelImg from '../../assets/screenshotLabel.svg'; import { ProjectRegisterType } from '../../types/projectType'; import { ImgContainer } from './ImgContainer'; import { projectDuplicate } from '../../apis/project'; -import * as _ from './Style'; +import * as _ from './style.tsx'; interface formPropsType { logo: Blob | null;