Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,17 @@ export default function RootLayout({ children }) {
return (
<html lang='ko' className={`${pretendard.variable} ${ocra.variable}`} suppressHydrationWarning>
<head>
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#000000"/>
<link rel="manifest" href="/manifest.json"/>
{/* PWA 관련 메타 태그 */}
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="GDGoC INHA" />
<link rel="apple-touch-icon" href="/icons/apple-icon-180x180.png" />
<meta name="mobile-web-app-capable" content="yes"/>
<meta name="mobile-web-app-status-bar-style" content="default"/>
<meta name="mobile-web-app-title" content="GDGoC INHA"/>
<link rel="touch-icon" href="/icons/apple-icon-180x180.png"/>
{/* 외부 스크립트 */}
<Script
src="https://unpkg.com/type-hangul@0.2.4/dist/type-hangul.bundle.js"
strategy="beforeInteractive"
src="https://unpkg.com/type-hangul@0.2.4/dist/type-hangul.bundle.js"
strategy="beforeInteractive"
/>
</head>
<body className={`${pretendard.className} antialiased`}>
Expand Down
2 changes: 1 addition & 1 deletion src/app/study/create/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function CreateStudy() {
'Content-Type': 'multipart/form-data',
},
});
const getS3Key = resS3?.data?.s3key;
const getS3Key = resS3?.data?.s3Key;
if (!getS3Key) throw new Error('S3 이미지 업로드 실패');

const updateFormData = {
Expand Down