File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
apps/frontend/src/components/launches Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export const WeekView = () => {
211211 className = "sticky top-0 z-10 bg-customColor20 p-2 text-center"
212212 >
213213 < div > { day . name } </ div >
214- < div className = "text-xs" > { day . day } </ div >
214+ < div className = { clsx ( "text-xs" , day . day === dayjs ( ) . format ( 'L' ) && 'text-yellow-300' ) } > { day . day } </ div >
215215 </ div >
216216 ) ) }
217217 { hours . map ( ( hour ) => (
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ export const LaunchesComponent = () => {
453453 user ?. tier ?. ai &&
454454 billingEnabled && < GeneratorComponent /> }
455455 < div className = "mt-[5px]" >
456- { process . env . NEXT_PUBLIC_VERSION ? `v ${ process . env . NEXT_PUBLIC_VERSION } ` : '' }
456+ { process . env . NEXT_PUBLIC_VERSION ? `${ process . env . NEXT_PUBLIC_VERSION } ` : '' }
457457 </ div >
458458 </ div >
459459 </ div >
You can’t perform that action at this time.
0 commit comments