Skip to content

Commit 714e5c3

Browse files
authored
Merge pull request #121 from GDGoCINHA/develop
HotFix: 이미지 업로드 API 오타 수정
2 parents 8d89a57 + b5d1c22 commit 714e5c3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/app/layout.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,17 @@ export default function RootLayout({ children }) {
114114
return (
115115
<html lang='ko' className={`${pretendard.variable} ${ocra.variable}`} suppressHydrationWarning>
116116
<head>
117-
<meta name="theme-color" content="#000000" />
118-
<link rel="manifest" href="/manifest.json" />
117+
<meta name="theme-color" content="#000000"/>
118+
<link rel="manifest" href="/manifest.json"/>
119119
{/* PWA 관련 메타 태그 */}
120-
<meta name="apple-mobile-web-app-capable" content="yes" />
121-
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
122-
<meta name="apple-mobile-web-app-title" content="GDGoC INHA" />
123-
<link rel="apple-touch-icon" href="/icons/apple-icon-180x180.png" />
120+
<meta name="mobile-web-app-capable" content="yes"/>
121+
<meta name="mobile-web-app-status-bar-style" content="default"/>
122+
<meta name="mobile-web-app-title" content="GDGoC INHA"/>
123+
<link rel="touch-icon" href="/icons/apple-icon-180x180.png"/>
124124
{/* 외부 스크립트 */}
125125
<Script
126-
src="https://unpkg.com/type-hangul@0.2.4/dist/type-hangul.bundle.js"
127-
strategy="beforeInteractive"
126+
src="https://unpkg.com/type-hangul@0.2.4/dist/type-hangul.bundle.js"
127+
strategy="beforeInteractive"
128128
/>
129129
</head>
130130
<body className={`${pretendard.className} antialiased`}>

src/app/study/create/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function CreateStudy() {
7979
'Content-Type': 'multipart/form-data',
8080
},
8181
});
82-
const getS3Key = resS3?.data?.s3key;
82+
const getS3Key = resS3?.data?.s3Key;
8383
if (!getS3Key) throw new Error('S3 이미지 업로드 실패');
8484

8585
const updateFormData = {

0 commit comments

Comments
 (0)