4 lines
100 B
TypeScript
4 lines
100 B
TypeScript
export const formatRejectionReason = (reason?: string | null): string => {
|
|
return reason || '-'
|
|
}
|