We're moving favicon/telemetry/company enrichment to a separate url for better security/monitoring
15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
export const sanitizeURL = (link: string | null | undefined) => {
|
|
return link
|
|
? link.replace(/(https?:\/\/)|(www\.)/g, '').replace(/\/$/, '')
|
|
: '';
|
|
};
|
|
|
|
export const getLogoUrlFromDomainName = (
|
|
domainName?: string,
|
|
): string | undefined => {
|
|
const sanitizedDomain = sanitizeURL(domainName);
|
|
return sanitizedDomain
|
|
? `https://twenty-icons.com/${sanitizedDomain}`
|
|
: undefined;
|
|
};
|