@@ -29,10 +29,10 @@ import {
29
29
type Option ,
30
30
} from "components/MultiSelectCombobox/MultiSelectCombobox" ;
31
31
import {
32
- Popover ,
33
- PopoverContent ,
34
- PopoverTrigger ,
35
- } from "components/Popover/Popover " ;
32
+ Tooltip ,
33
+ TooltipContent ,
34
+ TooltipTrigger ,
35
+ } from "components/Tooltip/Tooltip " ;
36
36
import { Spinner } from "components/Spinner/Spinner" ;
37
37
import { Switch } from "components/Switch/Switch" ;
38
38
import {
@@ -50,6 +50,7 @@ import { isUUID } from "utils/uuid";
50
50
import * as Yup from "yup" ;
51
51
import { OrganizationPills } from "./OrganizationPills" ;
52
52
import { Stack } from "components/Stack/Stack" ;
53
+ import { TooltipProvider } from "@radix-ui/react-tooltip" ;
53
54
54
55
interface IdpSyncPageViewProps {
55
56
organizationSyncSettings : OrganizationSyncSettings | undefined ;
@@ -416,16 +417,18 @@ const OrganizationRow: FC<OrganizationRowProps> = ({
416
417
< Stack direction = "row" alignItems = "center" spacing = { 1 } >
417
418
{ idpOrg }
418
419
{ ! exists && (
419
- < Popover >
420
- < PopoverTrigger asChild >
421
- < TriangleAlert className = "size-icon-sm cursor-pointer text-content-warning" />
422
- </ PopoverTrigger >
423
- < PopoverContent className = "p-2 text-xs text-content-secondary" >
424
- This value has not be seen in the specified claim field before.
425
- You might want to check your IdP configuration and ensure that
426
- this value is not misspelled.
427
- </ PopoverContent >
428
- </ Popover >
420
+ < TooltipProvider >
421
+ < Tooltip >
422
+ < TooltipTrigger asChild >
423
+ < TriangleAlert className = "size-icon-sm cursor-pointer text-content-warning" />
424
+ </ TooltipTrigger >
425
+ < TooltipContent className = "p-2 text-xs text-content-secondary max-w-sm" >
426
+ This value has not be seen in the specified claim field
427
+ before. You might want to check your IdP configuration and
428
+ ensure that this value is not misspelled.
429
+ </ TooltipContent >
430
+ </ Tooltip >
431
+ </ TooltipProvider >
429
432
) }
430
433
</ Stack >
431
434
</ TableCell >
0 commit comments