Skip to content

Commit

Permalink
fix: delete useless things
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbeann committed Aug 26, 2024
1 parent 587a56d commit 4ae2e4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function DueDateDialog({ title }: DueDateDialogProps) {
dueDateList.length !== 0 && dueDateList[0].deadLine != null && dueDateList[0].recruitScheduleStage != null;

return (
<div className="p-20 z-10">
<div className="p-20">
<div className="flex items-center w-314">
{title && (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ function Trigger({ children, className }: StrictPropsWithChildren<{ className?:
);
}


function Content({
children,
defaultOpen = false,
Expand All @@ -70,11 +69,7 @@ function Content({

return (
<If condition={isOpen || defaultOpen}>
<article
{...getContentProps()}
className={cn(getContentProps().className, className)} // 기존 클래스와 새로운 클래스 병합
>

<article {...getContentProps()} className={cn(getContentProps().className, className)}>
{children}
</article>
</If>
Expand Down

0 comments on commit 4ae2e4a

Please sign in to comment.