Fixed email messages

This commit is contained in:
Atridad Lahiji 2023-06-25 17:00:10 -06:00
parent b89e9c89f3
commit 0a470a401d
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -27,7 +27,7 @@ export const Goodbye: React.FC<Readonly<GoodbyeTemplateProps>> = ({ name }) => (
<Container className="border border-solid border-[#eaeaea] rounded my-[40px] mx-auto p-[20px] w-[465px]">
<Section className="mt-[32px]">
<Img
src={`${env.NEXTAUTH_URL}/logo.webp`}
src={`/logo.webp`}
width="40"
height="37"
alt={`Sprint Padawan Logo`}

View file

@ -12,7 +12,6 @@ import {
Section,
Img,
} from "@react-email/components";
import { env } from "~/env.mjs";
interface WelcomeTemplateProps {
name: string;
@ -27,7 +26,7 @@ export const Welcome: React.FC<Readonly<WelcomeTemplateProps>> = ({ name }) => (
<Container className="border border-solid border-[#eaeaea] rounded my-[40px] mx-auto p-[20px] w-[465px]">
<Section className="mt-[32px]">
<Img
src={`${env.NEXTAUTH_URL}/logo.webp`}
src={`/logo.webp`}
width="40"
height="37"
alt={`Sprint Padawan Logo`}