Skip to content

Commit

Permalink
rm tel: entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
jho44 committed Aug 29, 2023
1 parent 21ce954 commit 250f320
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/household/[householdId]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<p>{adult.firstName} {adult.lastName ?? ''}</p>
<p class="small-font">Pronouns: {PRONOUNS[adult.pronouns]}</p>
<p class="small-font">
Phone: <a href="tel:{adult.phone}">{adult.phone}</a>
Phone: <a href="sms:{adult.phone}">{adult.phone}</a>
</p>
<p class="small-font">Time Zone: {adult.timeZone}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/invites/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<p>{parent.firstName} {parent.lastName ?? ''}</p>
{/each}
</div>
<a href="tel:{household.phone}">{household.phone}</a>
<a href="sms:{household.phone}">{household.phone}</a>
<div class="w-full">
<div style="display: flex;">
<div
Expand Down

0 comments on commit 250f320

Please sign in to comment.