[Medium] [Task] Remove AttunementStatus from LeftPanel #323
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
Problem
The LeftPanel (
src/app/components/LeftPanel.tsx) includes anAttunementStatuscomponent that shows active attunements with XP bars. This is redundant because:src/components/game/tabs/AttunementsTab.tsx) already shows ALL attunements (active and locked) with full detail including XP progressFiles
src/app/components/LeftPanel.tsx— remove the AttunementStatus section (lines ~107-115)src/components/game/AttunementStatus.tsx— can be deleted after removal from LeftPanel (check if used elsewhere first)Plan
AttunementStatus.tsxis used anywhere else — if not, delete itNotes
Removed AttunementStatus from LeftPanel:
AttunementStatusimport from LeftPanel.tsx