improvement: remove test css

This commit is contained in:
Scott Wilson
2025-07-17 19:57:05 -07:00
parent a276d27451
commit 0080d5f291
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
identitiesUsed: 0,
dynamicSecret: false,
secretVersioning: true,
pitRecovery: false,
pitRecovery: true,
ipAllowlisting: false,
rbac: false,
githubOrgSync: false,

View File

@@ -453,7 +453,7 @@ const formatDeletedJson = (json: JsonValue): JSX.Element => {
{lines.map((line, lineIndex) => {
const lineKey = `deleted-${line.slice(0, 30)}-${lineIndex}`;
return (
<div key={lineKey} className="flex w-fit">
<div key={lineKey} className="flex">
<div className="w-4 flex-shrink-0">-</div>
<div>{line}</div>
</div>