feat: current day + version fix

This commit is contained in:
Nevo David 2025-07-04 00:30:14 +07:00
parent ca72c5d793
commit 2405c66263
2 changed files with 2 additions and 2 deletions

View File

@ -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) => (

View File

@ -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>