Skip to content

Commit

Permalink
refactor: change to domain component ResultCategoryDetailContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
yougyung committed Apr 26, 2024
1 parent 2d2df65 commit 2938193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/(sub-page)/result/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ContentContainer from '@/app/ui/view/atom/content-container';
import { cn } from '@/app/utils/shadcn/utils';
import ResultCategoryDetailContainer, {
ResultCategoryDetailSkeleton,
} from './components/result-category-detail-container';
} from '../../ui/result/result-category/result-category-detail-container';
import { Suspense } from 'react';

interface ResultPageProp {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ResultCategoryDetailContent from '@/app/ui/result/result-category/result-category-detail-content/result-category-detail-content';
import { fetchResultCategoryDetailInfo } from '@/app/business/result/result.query';
import ResultCategoryDetailContentSkeleton from '@/app/ui/result/result-category/result-category-detail-content/result-category-detail-content.skeleton';
import ResultCategoryDetailDialog from './result-category-detail-dialog';
import ResultCategoryDetailDialog from '../../../(sub-page)/result/components/result-category-detail-dialog';

export default async function ResultCategoryDetailContainer({ category }: { category: string }) {
const data = await fetchResultCategoryDetailInfo(category);
Expand Down

0 comments on commit 2938193

Please sign in to comment.