export const modifyOtpNumber = (data) => {
  if (data.startsWith('0')) {
    return data.slice(1, data.length);
  } else {
    return data;
  }
};
