Bug: Support page phone numbers and email are not clickable #106

Closed
opened 2026-05-17 21:18:30 -05:00 by null · 0 comments
Owner

Problem

On the Support page, phone numbers and email are plain text, not clickable links:

  • Line 132: (321) 730-8020 as plain text (no tel: link)
  • Line 138: info@queuenorth.com as plain text (no mailto: link)
  • Line 189: Or call our support team (321) 730-8020 (no tel: link)
  • Line 194: (321) 730-8020 (no tel: link)

Meanwhile the Contact page properly uses and .

Fix

Wrap all phone numbers in tel: links and email in mailto: links, matching the Contact page pattern:

Files

  • src/pages/Support.jsx - lines 132, 138, 189, 194

Severity

Medium - mobile users cannot tap-to-call from Support page

## Problem On the Support page, phone numbers and email are plain text, not clickable links: - Line 132: (321) 730-8020 as plain text (no tel: link) - Line 138: info@queuenorth.com as plain text (no mailto: link) - Line 189: Or call our support team (321) 730-8020 (no tel: link) - Line 194: (321) 730-8020 (no tel: link) Meanwhile the Contact page properly uses <a href="tel:+13217308020"> and <a href="mailto:info@queuenorth.com">. ## Fix Wrap all phone numbers in tel: links and email in mailto: links, matching the Contact page pattern: - <a href="tel:+13217308020">(321) 730-8020</a> - <a href="mailto:info@queuenorth.com">info@queuenorth.com</a> ## Files - src/pages/Support.jsx - lines 132, 138, 189, 194 ## Severity Medium - mobile users cannot tap-to-call from Support page
null closed this issue 2026-05-17 21:48:50 -05:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: null/Queue-North-Website#106
No description provided.