Fix populating login url in sign in email

This commit is contained in:
sabaimran
2025-01-07 14:53:00 -08:00
parent 36bdaedd2d
commit 8d028e10c6

View File

@@ -37,7 +37,7 @@ async def send_magic_link_email(email, unique_id, host):
template = env.get_template("magic_link.html")
html_content = template.render(link=f"{host}auth/magic?code={unique_id}", code=unique_id)
html_content = template.render(link=sign_in_link, code=unique_id)
resend.Emails.send(
{