Fix CI for compliance portal rename

Workflows still stubbed apps/trust/dist after the rename, so
go:embed and frontend builds failed. Also make step-ca writable
on Linux CI and fix domains section indent lint.

Signed-off-by: Bryan Frimin <bryan@probo.com>
This commit is contained in:
Bryan Frimin
2026-07-17 17:52:23 +02:00
parent caeb6d9225
commit 17d877a8bd
4 changed files with 31 additions and 17 deletions

View File

@@ -67,20 +67,20 @@ export function CompliancePageDomainsSection(props: {
{customDomain
? (
<CompliancePageDomainCard fKey={customDomain} />
)
<CompliancePageDomainCard fKey={customDomain} />
)
: organization.canCreateCustomDomain && (
<div className="flex flex-col items-center justify-center gap-3 rounded-lg border border-dashed border-border-solid px-4 py-8">
<p className="max-w-md text-center text-sm text-txt-tertiary">
{__(
"Use your own domain to make your compliance page feel more professional.",
)}
</p>
<NewCompliancePageDomainDialog compliancePageId={compliancePageId}>
<Button iconAfter={IconChevronRight}>{__("Configure")}</Button>
</NewCompliancePageDomainDialog>
</div>
)}
<div className="flex flex-col items-center justify-center gap-3 rounded-lg border border-dashed border-border-solid px-4 py-8">
<p className="max-w-md text-center text-sm text-txt-tertiary">
{__(
"Use your own domain to make your compliance page feel more professional.",
)}
</p>
<NewCompliancePageDomainDialog compliancePageId={compliancePageId}>
<Button iconAfter={IconChevronRight}>{__("Configure")}</Button>
</NewCompliancePageDomainDialog>
</div>
)}
</div>
</section>
);