pl-fe: wtf

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2025-10-15 17:36:27 +02:00
parent 0957d28d94
commit 33090eeff4

View File

@ -9,10 +9,9 @@ interface IBackgroundShapes {
}
/** Gradient that appears in the background of the UI. */
const BackgroundShapes: React.FC<IBackgroundShapes> = ({ position = 'fixed', hidden }) => (
const BackgroundShapes: React.FC<IBackgroundShapes> = ({ position = 'fixed', hidden }) => hidden ? null : (
<div
className={clsx(position, 'pointer-events-none inset-x-0 top-0 flex justify-center overflow-hidden ', {
'hidden': hidden,
'black:hidden': hidden === undefined,
})}
>