1export const capitalizeFirst = (value: string): string => { 2 return `${value[0]!.toUpperCase()}${value.substring(1)}`; 3};