Skip to content

Commit

Permalink
fix(CalendarTime): run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
EldarMuhamethanov committed Nov 5, 2024
1 parent 8c6d0e1 commit 6e1628f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/vkui/src/components/CalendarTime/CalendarTime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ export const CalendarTime = ({
);

return (
<div className={classNames(styles['CalendarTime'], !doneButtonShow && styles['CalendarTime__withoutDone'])}>
<div
className={classNames(
styles['CalendarTime'],
!doneButtonShow && styles['CalendarTime__withoutDone'],
)}
>
<div className={styles['CalendarTime__picker']}>
<AdaptivityProvider sizeY="compact">
<CustomSelect
Expand All @@ -96,12 +101,7 @@ export const CalendarTime = ({
{doneButtonShow && (
<div className={styles['CalendarTime__button']}>
<AdaptivityProvider sizeY="compact">
<Button
mode="secondary"
onClick={onClose}
size="l"
disabled={doneButtonDisabled}
>
<Button mode="secondary" onClick={onClose} size="l" disabled={doneButtonDisabled}>
{doneButtonText}
</Button>
</AdaptivityProvider>
Expand Down

0 comments on commit 6e1628f

Please sign in to comment.