Skip to content

Commit

Permalink
fix: updating networking body message
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasz97 committed Feb 5, 2025
1 parent d31ff80 commit a0dceeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Networking.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const Networking = component$(() => {
const subject = type === 'add' ? '[Brickly] New Connection' : '[Brickly] Remove Connection';
const body =
type === 'add'
? `Company ${company.value.domain} requires a connection with ${correspondent.domain}`
: `Company ${company.value.domain} requires the removal of the connection with ${correspondent.domain}`;
? `Company ${company.value.domain} requested a connection with ${correspondent.domain}`
: `Company ${company.value.domain} requested the removal of the connection with ${correspondent.domain}`;

const mailtoLink = `mailto:${email}?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`;

Expand Down

0 comments on commit a0dceeb

Please sign in to comment.