Skip to content

Commit e39ab43

Browse files
authored
Merge pull request #232 from CSE-Shaco/develop
fix(homecoming): metadata 노출을 위한 구조 개선
2 parents 2b49db9 + ab58061 commit e39ab43

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/app/homecoming/layout.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const metadata = {
1818
url: "/homecoming",
1919
siteName: "GDGoC INHA",
2020
images: [{
21-
url: "/images/homecoming/meta_img.png", width: 1200, height: 630, alt: "GDGoC INHA Homecoming Day",
21+
url: "/images/homecoming/meta_img.png", width: 1143, height: 750, alt: "GDGoC INHA Homecoming Day",
2222
},],
2323
locale: "ko_KR",
2424
type: "website",
@@ -33,9 +33,5 @@ export const metadata = {
3333
};
3434

3535
export default function HomecomingLayout({ children }) {
36-
return (
37-
<Suspense fallback={<Loader />}>
38-
{children}
39-
</Suspense>
40-
);
36+
return children;
4137
}

0 commit comments

Comments
 (0)