Skip to content

Commit

Permalink
feat: short filter 렌더링 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
spolice0324 committed Jun 17, 2024
1 parent eabed7e commit 817f004
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/onboard/onboard-step3/step3-tree-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ const Step3TreeInfo = ({ filter }: { filter: FilterType }) => {
<h3 className="font-bold text-[1.6vb] text-st tracking-tighter mt-[2.2vb] mb-[1.4vb] text-start">
김디엔님에 대해 알아보세요!
</h3>

{short?.length ? (
{/* !DELETE */}
{/* {short?.length ? (
<>
<div className="flex overflow-x-scroll space-x-[1vb] w-[22vb] px-[0.6vb] pl-[0.6vb] scrollbar-hide avoid-min-w relative">
{short.slice(0, short.length / 2).map((item) => (
Expand All @@ -120,7 +120,7 @@ const Step3TreeInfo = ({ filter }: { filter: FilterType }) => {
))}
</div>
</>
) : null}
) : null} */}
</>
)
}
Expand Down
1 change: 0 additions & 1 deletion model/tree.entity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export const treeCardAsset: Record<TreeAssetKey, ReactNode> = {
FOUR_YEARS_UNIVERSITY: <FourUniversity />,
FOUR_YEARS_WORK: <FourWork />,
FOUR_YEARS_SOCIAL: <FourSocial />,

FOUR_YEARS_ETC: <FourEtc />,
INFINITE_ELEMENTARY_SCHOOL: <InfiniteElementary />,
INFINITE_WORK: <InfiniteWork />,
Expand Down

0 comments on commit 817f004

Please sign in to comment.