diff --git a/frontend/src/bundles/auth/components/auth-forms/sign-in-form/styles.module.scss b/frontend/src/bundles/auth/components/auth-forms/sign-in-form/styles.module.scss index 95ad599e6..44bf1a8fe 100644 --- a/frontend/src/bundles/auth/components/auth-forms/sign-in-form/styles.module.scss +++ b/frontend/src/bundles/auth/components/auth-forms/sign-in-form/styles.module.scss @@ -20,6 +20,8 @@ & .forgot { width: unset; + color: var(--st-tropaz); font-size: var(--font-size-body); + text-decoration: none; } } diff --git a/frontend/src/bundles/chat/components/company-info/company-employer/company-employer.tsx b/frontend/src/bundles/chat/components/company-info/company-employer/company-employer.tsx index 07064d857..1703b39da 100644 --- a/frontend/src/bundles/chat/components/company-info/company-employer/company-employer.tsx +++ b/frontend/src/bundles/chat/components/company-info/company-employer/company-employer.tsx @@ -93,8 +93,11 @@ const CompanyEmployer: React.FC = ({ {!talentIsHired && ( <> - - Have the company hired you? + + Has the company hired you? { const words = message.split(' '); return ( {words.map((word) => { const [link, specialPrefix] = word.split('_&_').reverse(); - const isLink = URL_REGEX.test(link); + const isLink = + URL_REGEX.test(link) || GENERAL_LINK_REGEX.test(link); + const isCVLink = isLink && specialPrefix === 'CV'; const isProfileLink = isLink && specialPrefix === 'Profile'; const isVacancyPosition =