We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7752510 commit c9e882fCopy full SHA for c9e882f
packages/twenty-front/src/utils/getDisplayValueByUrlType.ts
@@ -16,7 +16,7 @@ export const getDisplayValueByUrlType = ({
16
/(?:https?:\/\/)?(?:www.)?linkedin.com\/(?:in|company|school)\/(.*)/,
17
);
18
if (isDefined(matches?.[1])) {
19
- return matches?.[1];
+ return decodeURIComponent(matches?.[1]);
20
} else {
21
return 'LinkedIn';
22
}
0 commit comments