fix(web): add missing user-cog icon for Profile card (BUNYIP-171) #235
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/bunyip-171-profile-icon"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Profile settings card and the onboarding "Tell us your name" step both
render their header glyph via
settings_card("user-cog", ...)/step_card("user-cog", ...), butui::inner()had no"user-cog"arm. Unknown names fall through to the_ => ""default, so the SVG rendered empty and the icon was missing (visible next to the populated "user" icon on the Account Information card). Add the lucideuser-cogpath set, matching the existinguser-plusbody so it stays visually consistent.#BUNYIP-171
The Profile settings card and the onboarding "Tell us your name" step both render their header glyph via `settings_card("user-cog", ...)` / `step_card("user-cog", ...)`, but `ui::inner()` had no `"user-cog"` arm. Unknown names fall through to the `_ => ""` default, so the SVG rendered empty and the icon was missing (visible next to the populated "user" icon on the Account Information card). Add the lucide `user-cog` path set, matching the existing `user-plus` body so it stays visually consistent. #BUNYIP-171