diff --git a/packages/twenty-front/src/utils/getDisplayValueByUrlType.ts b/packages/twenty-front/src/utils/getDisplayValueByUrlType.ts index 75cf16fa1..5e5087d5c 100644 --- a/packages/twenty-front/src/utils/getDisplayValueByUrlType.ts +++ b/packages/twenty-front/src/utils/getDisplayValueByUrlType.ts @@ -16,7 +16,7 @@ export const getDisplayValueByUrlType = ({ /(?:https?:\/\/)?(?:www.)?linkedin.com\/(?:in|company|school)\/(.*)/, ); if (isDefined(matches?.[1])) { - return matches?.[1]; + return decodeURIComponent(matches?.[1]); } else { return 'LinkedIn'; }