diff --git a/messages/en-US.json b/messages/en-US.json
index f033e96f4..5937595b5 100644
--- a/messages/en-US.json
+++ b/messages/en-US.json
@@ -984,7 +984,7 @@
"sharedPolicy": "Shared Policy",
"sharedPolicyNoneDescription": "This resource has its own policy.",
"resourceSharedPolicyOwnDescription": "This resource has its own authentication and access rules controls.",
- "resourceSharedPolicyInheritedDescription": "This resource inherits authentication and access rules controls from {policyName}.",
+ "resourceSharedPolicyInheritedDescription": "This resource inherits from {policyName}.",
"resourceSharedPolicyAuthenticationNotice": "This resource is using a shared policy. Some authentication settings can be edited on this resource to add to the policy. To change the underlying policy, you must edit to {policyName}.",
"resourceSharedPolicyRulesNotice": "This resource is using a shared policy. Some access rules can be edited on this resource. To change the underlying policy, you must edit {policyName}.",
"resourceUsersRoles": "Access Controls",
diff --git a/src/app/[orgId]/settings/resources/public/[niceId]/maintenance/page.tsx b/src/app/[orgId]/settings/resources/public/[niceId]/maintenance/page.tsx
index bb3dd7186..10bea4ffe 100644
--- a/src/app/[orgId]/settings/resources/public/[niceId]/maintenance/page.tsx
+++ b/src/app/[orgId]/settings/resources/public/[niceId]/maintenance/page.tsx
@@ -169,20 +169,27 @@ export default function ResourceMaintenancePage() {
{
id: "automatic",
title: `${t("automatic")} (${t("recommended")})`,
- description: t("automaticModeDescription"),
- disabled: isMaintenanceDisabled
+ description: t("automaticModeDescription")
},
{
id: "forced",
title: t("forced"),
- description: t("forcedModeDescription"),
- disabled: isMaintenanceDisabled
+ description: t("forcedModeDescription")
}
];
return (
-
-
+ <>
+
+