diff options
| author | GitHub Action <[email protected]> | 2025-11-08 01:59:02 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-11-08 01:59:02 +0000 |
| commit | 34ff87d504836ff71b3bb2d466842c00ee3c5ec2 (patch) | |
| tree | cc8ac777f2f082ff676b179017c7dc0f3270314b /packages/console/mail | |
| parent | 16357e804145b7f96a2a53badb7dcb6c5453dafe (diff) | |
| download | opencode-34ff87d504836ff71b3bb2d466842c00ee3c5ec2.tar.gz opencode-34ff87d504836ff71b3bb2d466842c00ee3c5ec2.zip | |
chore: format code
Diffstat (limited to 'packages/console/mail')
| -rw-r--r-- | packages/console/mail/emails/templates/InviteEmail.tsx | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/packages/console/mail/emails/templates/InviteEmail.tsx b/packages/console/mail/emails/templates/InviteEmail.tsx index e94eb564c..baf0d383f 100644 --- a/packages/console/mail/emails/templates/InviteEmail.tsx +++ b/packages/console/mail/emails/templates/InviteEmail.tsx @@ -1,18 +1,6 @@ // @ts-nocheck import React from "react" -import { - Img, - Row, - Html, - Link, - Body, - Head, - Button, - Column, - Preview, - Section, - Container, -} from "@jsx-email/all" +import { Img, Row, Html, Link, Body, Head, Button, Column, Preview, Section, Container } from "@jsx-email/all" import { Text, Fonts, Title, A, Span } from "../components" import { unit, @@ -64,8 +52,8 @@ export const InviteEmail = ({ <Section style={{ padding: `${unit * 2}px 0 0 0` }}> <Text style={headingText}>Join your team's OpenCode workspace</Text> <Text style={contentText}> - You have been invited by <Span style={contentHighlightText}>{inviter}</Span> to join - the <Span style={contentHighlightText}>{workspaceName}</Span> workspace on OpenCode. + You have been invited by <Span style={contentHighlightText}>{inviter}</Span> to join the{" "} + <Span style={contentHighlightText}>{workspaceName}</Span> workspace on OpenCode. </Text> </Section> @@ -73,12 +61,7 @@ export const InviteEmail = ({ <Button style={button} href={url}> <Text style={buttonText}> Join workspace - <Img - width="24" - height="24" - src={`${assetsUrl}/right-arrow.png`} - alt="Arrow right" - /> + <Img width="24" height="24" src={`${assetsUrl}/right-arrow.png`} alt="Arrow right" /> </Text> </Button> </Section> |
