Skip to content

Commit

Permalink
hotfix: VITE_BASE_URL 환경변수 설정 (#113)
Browse files Browse the repository at this point in the history
* fix: VITE_BASE_URL 환경변수 설정

* fix: 띄어쓰기 오류 수정

---------

Co-authored-by: wukddang <[email protected]>
  • Loading branch information
wukdddang and wukdddang authored Nov 11, 2023
1 parent 6c1f4fb commit c93926b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_BASE_URL='https://api.coffee-meet.site/api'
1 change: 0 additions & 1 deletion src/components/common/BusinessCardContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const BusinessCardContainer = ({ isDarkMode }: BusinessCardContainerProps) => {

const handleImageUpload = (event: React.ChangeEvent<HTMLInputElement>) => {
if (!uploadedImage) {

const uploadedFile = event.target.files?.[0]
const uploadedFileReader = new FileReader()

Expand Down
2 changes: 1 addition & 1 deletion src/components/common/GradationBackground/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type GradationBackgroundProps = {
const GradationBackground = ({ children, isDarkMode }: GradationBackgroundProps) => {
return <StyledGradationBackground isDarkMode={isDarkMode}>{children}</StyledGradationBackground>
}

const StyledGradationBackground = styled.div<{
isDarkMode: boolean
}>`
Expand Down

0 comments on commit c93926b

Please sign in to comment.