This commit is contained in:
Daniel Hougaard
2025-08-25 17:55:44 +02:00
parent 8123be4c14
commit 10cfbe0c74
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import { faInfoCircle } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { twMerge } from "tailwind-merge";
import { UpgradePlanModal } from "@app/components/license/UpgradePlanModal";
import { createNotification } from "@app/components/notifications";
@@ -13,7 +14,6 @@ import {
} from "@app/context";
import { useLogoutUser, useUpdateOrg } from "@app/hooks/api";
import { usePopUp } from "@app/hooks/usePopUp";
import { twMerge } from "tailwind-merge";
enum EnforceAuthType {
SAML = "saml",

View File

@@ -1,3 +1,4 @@
/* eslint-disable no-nested-ternary */
import { ReactNode } from "react";
import { Controller, useForm } from "react-hook-form";
import {
@@ -629,7 +630,6 @@ export const SecretApprovalRequestChanges = ({
<Tooltip
className="relative !z-[500]"
content={
// eslint-disable-next-line no-nested-ternary
!isOrgMembershipActive
? "This user has been deactivated and no longer has an active organization membership."
: `${reviewer.firstName || ""} ${reviewer.lastName || ""}`