Fix merge issues

This commit is contained in:
Owen
2025-12-20 15:53:38 -05:00
committed by Owen Schwartz
parent ccd4f9b65c
commit 9b3d066a91
2 changed files with 6 additions and 3 deletions

View File

@@ -30,5 +30,4 @@ export * from "./removeRoleFromResource";
export * from "./addUserToResource";
export * from "./removeUserFromResource";
export * from "./listAllResourceNames";
export * from "./getMaintenanceInfo";
export * from "./removeEmailFromResourceWhitelist";

View File

@@ -67,7 +67,7 @@ import {
TooltipProvider,
TooltipTrigger
} from "@app/components/ui/tooltip";
import { LicenseOrSubscriptionRequiredAlert } from "@app/components/SecurityFeaturesAlert";
import { PaidFeaturesAlert } from "@app/components/PaidFeaturesAlert";
export default function GeneralForm() {
const [formKey, setFormKey] = useState(0);
@@ -519,7 +519,7 @@ export default function GeneralForm() {
</SettingsSectionHeader>
<SettingsSectionBody>
<LicenseOrSubscriptionRequiredAlert />
<PaidFeaturesAlert />
<SettingsSectionForm>
<Form {...form}>
@@ -798,6 +798,10 @@ export default function GeneralForm() {
orgId={orgId as string}
cols={1}
onDomainChange={(res) => {
if (!res) {
setSelectedDomain(null);
return;
}
const selected = {
domainId: res.domainId,
subdomain: res.subdomain,