Skip to content

Commit

Permalink
Merge pull request #232 from TripInfoWeb/dev_support
Browse files Browse the repository at this point in the history
fix: 서버 배포시 build 문제 수정
  • Loading branch information
ssssksss authored Aug 27, 2024
2 parents 21390c2 + 0935949 commit 029f360
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/app/support/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import SupportHeaderContainer from "@/containers/support/SupportHeaderContainer";
import { Suspense } from "react";

interface IPage {}

const Page = (props: IPage) => {

return (
<div className={"w-full mb-8"}>
<SupportHeaderContainer />
<div className={"mb-8 w-full"}>
<Suspense fallback={<div>Loading...</div>}>
<SupportHeaderContainer />
</Suspense>
</div>
);
};
Expand Down

0 comments on commit 029f360

Please sign in to comment.