fix(Calendar): add missing route animation

This commit is contained in:
Timothy Z. 2025-01-15 11:16:26 +02:00
parent 9c2cc0e7ff
commit 7f068a2fcc

View file

@ -11,6 +11,7 @@ import Placeholder from './Placeholder';
import useCalendar from './useCalendar';
import useCalendarDate from './useCalendarDate';
import styles from './Calendar.less';
import classNames from 'classnames';
type Props = {
urlParams: UrlParams,
@ -34,7 +35,7 @@ const Calendar = ({ urlParams }: Props) => {
<MainNavBars className={styles['calendar']} route={'calendar'}>
{
profile.auth !== null ?
<div className={styles['content']}>
<div className={classNames(styles['content'], 'animation-fade-in')}>
<div className={styles['main']}>
<Selector
selected={calendar.selected}