1
- import Link from "@mui/material/Link" ;
2
1
import Skeleton from "@mui/material/Skeleton" ;
3
2
import Table from "@mui/material/Table" ;
4
3
import TableBody from "@mui/material/TableBody" ;
@@ -26,6 +25,7 @@ import {
26
25
} from "components/HelpTooltip/HelpTooltip" ;
27
26
import { Input } from "components/Input/Input" ;
28
27
import { Label } from "components/Label/Label" ;
28
+ import { Link } from "components/Link/Link" ;
29
29
import { Loader } from "components/Loader/Loader" ;
30
30
import {
31
31
MultiSelectCombobox ,
@@ -38,7 +38,7 @@ import {
38
38
} from "components/TableLoader/TableLoader" ;
39
39
import { TabLink , Tabs , TabsList } from "components/Tabs/Tabs" ;
40
40
import { useFormik } from "formik" ;
41
- import { Plus , SquareArrowOutUpRight , Trash } from "lucide-react" ;
41
+ import { Plus , Trash } from "lucide-react" ;
42
42
import { type FC , useState } from "react" ;
43
43
import { useSearchParams } from "react-router-dom" ;
44
44
import { docs } from "utils/docs" ;
@@ -174,15 +174,10 @@ const IdpMappingTable: FC<IdpMappingTableProps> = ({
174
174
message = { `No ${ type } Mappings` }
175
175
isCompact
176
176
cta = {
177
- < Button variant = "outline" asChild >
178
- < a
179
- href = { docs ( "/admin/users/idp-sync" ) }
180
- className = "no-underline"
181
- >
182
- < SquareArrowOutUpRight size = { 14 } />
183
- How to setup IdP { type } sync
184
- </ a >
185
- </ Button >
177
+ < Link
178
+ text = { `How to setup IdP ${ type } sync` }
179
+ href = { docs ( "/admin/users/idp-sync" ) }
180
+ />
186
181
}
187
182
/>
188
183
</ TableCell >
@@ -710,9 +705,10 @@ const LegacyGroupSyncHeader: FC = () => {
710
705
configure IdP sync via the CLI or the UI, which enables sync to be
711
706
configured for any organization, and for those settings to be
712
707
persisted without manually setting environment variables.{ " " }
713
- < Link href = { docs ( "/admin/users/idp-sync" ) } >
714
- Learn more…
715
- </ Link >
708
+ < Link
709
+ text = "Learn more…"
710
+ href = { docs ( "/admin/users/idp-sync" ) }
711
+ />
716
712
</ HelpTooltipText >
717
713
</ HelpTooltipContent >
718
714
</ HelpTooltip >
0 commit comments