Skip to content

Commit

Permalink
fix: Fragment 대신 div 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
solar3070 committed Nov 12, 2023
1 parent fc6f015 commit 97650c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function Select<T extends LabelKeyType>({
const breakPoint = pageBreakPoint[page];

return (
<>
<div>
<S.SelectTrigger
ref={selectTriggerRef}
onClick={toggleSelect}
Expand Down Expand Up @@ -80,6 +80,6 @@ export default function Select<T extends LabelKeyType>({
))}
</S.SelectItemWrapper>
)}
</>
</div>
);
}

0 comments on commit 97650c0

Please sign in to comment.