diff --git a/.env.production b/.env.production new file mode 100644 index 00000000..04849b83 --- /dev/null +++ b/.env.production @@ -0,0 +1 @@ +VITE_BASE_URL='https://api.coffee-meet.site/api' \ No newline at end of file diff --git a/src/components/common/BusinessCardContainer/index.tsx b/src/components/common/BusinessCardContainer/index.tsx index f918c80a..34a87af0 100644 --- a/src/components/common/BusinessCardContainer/index.tsx +++ b/src/components/common/BusinessCardContainer/index.tsx @@ -17,7 +17,6 @@ const BusinessCardContainer = ({ isDarkMode }: BusinessCardContainerProps) => { const handleImageUpload = (event: React.ChangeEvent) => { if (!uploadedImage) { - const uploadedFile = event.target.files?.[0] const uploadedFileReader = new FileReader() diff --git a/src/components/common/GradationBackground/index.tsx b/src/components/common/GradationBackground/index.tsx index 97820692..2eb2968f 100644 --- a/src/components/common/GradationBackground/index.tsx +++ b/src/components/common/GradationBackground/index.tsx @@ -14,7 +14,7 @@ type GradationBackgroundProps = { const GradationBackground = ({ children, isDarkMode }: GradationBackgroundProps) => { return {children} } - + const StyledGradationBackground = styled.div<{ isDarkMode: boolean }>`