This commit is contained in:
Daniel Hougaard
2024-03-29 16:24:15 +01:00
parent c66476e2b4
commit cb505d1525
2 changed files with 6 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
status: null,
trial_end: null,
has_used_trial: true,
secretApproval: false,
secretApproval: true,
secretRotation: true
});

View File

@@ -3,6 +3,8 @@ import { faLock } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { twMerge } from "tailwind-merge";
import { Button } from "../v2";
type Props = {
containerClassName?: string;
className?: string;
@@ -32,6 +34,9 @@ export const PermissionDeniedBanner = ({ containerClassName, className, children
)}
</div>
</div>
<Button className="mt-3 ml-[7.5rem]" size="xs">
Request access
</Button>
</div>
</div>
);