diff --git a/src/pages/Profile.tsx b/src/pages/Profile.tsx index 56563bc..41a4426 100644 --- a/src/pages/Profile.tsx +++ b/src/pages/Profile.tsx @@ -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) };