Commit b8790200 authored by Danny Liu's avatar Danny Liu
Browse files

refac: code style

parent 4200ad11
......@@ -110,7 +110,8 @@ export const generateInitialsImage = (name) => {
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
const initials = name.trim().length > 0 ? name[0] + (name.trim().split(' ').length > 1 ? name[name.lastIndexOf(' ') + 1] : '') : '';
const sanitizedName = name.trim();
const initials = sanitizedName.length > 0 ? sanitizedName[0] + (sanitizedName.split(' ').length > 1 ? sanitizedName[sanitizedName.lastIndexOf(' ') + 1] : '') : '';
ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment