cleanup consent screen

This commit is contained in:
Max Peintner
2025-05-06 16:08:45 +02:00
parent f6d560ded2
commit 5a97af410f

View File

@@ -59,9 +59,9 @@ export function ConsentScreen({
return (
<li
key={s}
className="grid grid-cols-4 w-full text-sm flex flex-row items-center bg-background-light-400 dark:bg-background-dark-400 border border-divider-light py-2 px-4 rounded-md transition-all"
className="w-full text-sm flex flex-row items-center bg-background-light-400 dark:bg-background-dark-400 border border-divider-light py-2 px-4 rounded-md transition-all"
>
<span className="col-span-3">{resolvedDescription}</span>
<span>{resolvedDescription}</span>
</li>
);
})}