refactor: refs #6818 check prefix #1013

Merged
jorgep merged 8 commits from 6818-hotfix-refactorParsePhone into master 2024-12-02 10:22:21 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 6745c15b0e - Show all commits

View File

@ -1,6 +1,7 @@
import axios from 'axios';
export default async function parsePhone(phone, country) {
if (!phone) return;
if (phone.startsWith('+')) return `${phone.slice(1)}`;
if (phone.startsWith('00')) return `${phone.slice(2)}`;
try {