Merge branch 'develop' into feature/cw-3191

This commit is contained in:
Muhsin Keloth
2024-04-26 16:03:06 +05:30
committed by GitHub
52 changed files with 664 additions and 924 deletions
@@ -4,7 +4,6 @@ export const replaceRouteWithReload = url => {
export const userInitial = name => {
if (!name) return '';
const parts = name.split(/[ -]/).filter(Boolean);
let initials = parts.map(part => part[0].toUpperCase()).join('');
return initials.slice(0, 2);