export const removeUnderScore = (str: string): string => {
  return str.replace(/_/g, ' ');
}