export const uncapitalizeFirstLetter = (str: string) => {
  return str.charAt(0).toLowerCase() + str.slice(1);
};
