Merge branch 'dev' into toran/open-2273-add-image-to-video-block

This commit is contained in:
Toran Bruce Richards
2024-12-29 21:09:49 +00:00
committed by GitHub
2 changed files with 6 additions and 2 deletions

View File

@@ -676,7 +676,7 @@ async def update_or_create_profile(
if profile.name is not None:
update_data["name"] = profile.name
if profile.username is not None:
update_data["username"] = profile.username
update_data["username"] = profile.username.lower()
if profile.description is not None:
update_data["description"] = profile.description
if profile.links is not None:

View File

@@ -67,9 +67,13 @@ export default async function Page({
<p className="font-geist text-underline-position-from-font text-decoration-skip-none text-left text-base font-medium leading-6">
About
</p>
<div className="font-poppins text-[48px] font-normal leading-[59px] text-neutral-900 dark:text-zinc-50">
<div
className="font-poppins text-[48px] font-normal leading-[59px] text-neutral-900 dark:text-zinc-50"
style={{ whiteSpace: "pre-line" }}
>
{creator.description}
</div>
<CreatorLinks links={creator.links} />
</div>
</div>