[CAL-317] Confirmation Email - Footer text isn't properly formatted (#5676)

Co-authored-by: gitstart <gitstart@users.noreply.github.com>
Co-authored-by: gitstart <gitstart@gitstart.com>
Co-authored-by: Matheus Muniz <87545749+matheusmuniz03@users.noreply.github.com>
Co-authored-by: Matheus Benini Ferreira <88898100+MatheusBeniniF@users.noreply.github.com>
Co-authored-by: Nitesh Singh <nitesh.singh@gitstart.dev>
Co-authored-by: Matheus Benini <matheus_benini@hotmail.com>
Co-authored-by: Murilo Amaral <87545137+MuriloAmarals@users.noreply.github.com>
Co-authored-by: Rafael Toledo <87545086+Toledodev@users.noreply.github.com>
Co-authored-by: Alex van Andel <me@alexvanandel.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
GitStart 2022-11-25 19:02:30 +01:00 committed by GitHub
parent b188368e8f
commit 77bf14a797
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,16 +28,15 @@ export function ManageLink(props: { calEvent: CalendarEvent; attendee: Person })
width: "100%",
gap: "8px",
}}>
<>{t("need_to_make_a_change")}</>
<>{t("need_to_make_a_change")}</>{" "}
{!props.calEvent.recurringEvent && (
<>
<a href={getRescheduleLink(props.calEvent)} style={{ color: "#3e3e3e" }}>
<>{t("reschedule")}</>
<>{t("reschedule")}</>{" "}
</a>
<>{t("or_lowercase")}</>
<>{t("or_lowercase")}</>{" "}
</>
)}
<a href={getCancelLink(props.calEvent)} style={{ color: "#3e3e3e" }}>
<>{t("cancel")}</>
</a>