Remove URL previews from profile about

This commit is contained in:
Bojan Mojsilovic 2023-09-04 15:17:40 +02:00
parent 5cb6793c62
commit ef0ac3798d

View File

@ -402,8 +402,8 @@ const Profile: Component = () => {
const [renderProfileAbout, setRenderProfileAbout] = createSignal('');
const getProfileAbout = async (about: string) => {
const a = await replaceLinkPreviews(urlify(sanitize(about), () => '', false, false))
const getProfileAbout = (about: string) => {
const a = urlify(sanitize(about), () => '', false, false, true);
setRenderProfileAbout(a)
};