@@ -2,7 +2,7 @@ import useLink from "@/lib/swr/use-link";
2
2
import useLinks from "@/lib/swr/use-links" ;
3
3
import useProgram from "@/lib/swr/use-program" ;
4
4
import { LinkProps } from "@/lib/types" ;
5
- import { Combobox , LinkLogo } from "@dub/ui" ;
5
+ import { Combobox , LinkLogo , Tooltip } from "@dub/ui" ;
6
6
import { ArrowTurnRight2 } from "@dub/ui/icons" ;
7
7
import { cn , getApexDomain , linkConstructor } from "@dub/utils" ;
8
8
import { useMemo , useState } from "react" ;
@@ -100,15 +100,27 @@ export function PartnerLinkSelector({
100
100
{ selectedLink ?. url && showDestinationUrl && (
101
101
< div className = "ml-2 mt-2 flex items-center gap-1 text-xs text-neutral-500" >
102
102
< ArrowTurnRight2 className = "size-3 shrink-0" />
103
- < span className = "min-w-0 truncate" >
104
- Destination URL:{ " " }
105
- < a
106
- href = { selectedLink . url }
107
- target = "_blank"
108
- className = "underline-offset-2 hover:underline"
103
+ < span className = "flex min-w-0 items-center gap-1 whitespace-nowrap" >
104
+ < span > Destination URL:</ span >
105
+ < Tooltip
106
+ align = "end"
107
+ alignOffset = { - 10 }
108
+ sideOffset = { 9 }
109
+ delayDuration = { 300 }
110
+ content = {
111
+ < div className = "line-clamp-4 max-w-[495px] overflow-hidden break-all p-2.5 text-xs text-neutral-600" >
112
+ { selectedLink . url }
113
+ </ div >
114
+ }
109
115
>
110
- { selectedLink . url }
111
- </ a >
116
+ < a
117
+ href = { selectedLink . url }
118
+ target = "_blank"
119
+ className = "min-w-0 truncate underline-offset-2 hover:underline"
120
+ >
121
+ { selectedLink . url }
122
+ </ a >
123
+ </ Tooltip >
112
124
</ span >
113
125
</ div >
114
126
) }
0 commit comments