feat: current day + version fix
This commit is contained in:
parent
ca72c5d793
commit
2405c66263
|
|
@ -211,7 +211,7 @@ export const WeekView = () => {
|
|||
className="sticky top-0 z-10 bg-customColor20 p-2 text-center"
|
||||
>
|
||||
<div>{day.name}</div>
|
||||
<div className="text-xs">{day.day}</div>
|
||||
<div className={clsx("text-xs", day.day === dayjs().format('L') && 'text-yellow-300')}>{day.day}</div>
|
||||
</div>
|
||||
))}
|
||||
{hours.map((hour) => (
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ export const LaunchesComponent = () => {
|
|||
user?.tier?.ai &&
|
||||
billingEnabled && <GeneratorComponent />}
|
||||
<div className="mt-[5px]">
|
||||
{process.env.NEXT_PUBLIC_VERSION ? `v${process.env.NEXT_PUBLIC_VERSION}` : ''}
|
||||
{process.env.NEXT_PUBLIC_VERSION ? `${process.env.NEXT_PUBLIC_VERSION}` : ''}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue