fix(tui) reorder personality command (#10134)

## Summary
Reorder it down the list

## Testing 
- [x] Tests pass
This commit is contained in:
Dylan Hurd
2026-01-28 22:51:57 -07:00
committed by GitHub
parent 8cc338aecf
commit be33de3f87

View File

@@ -13,7 +13,6 @@ pub enum SlashCommand {
// DO NOT ALPHA-SORT! Enum order is presentation order in the popup, so // DO NOT ALPHA-SORT! Enum order is presentation order in the popup, so
// more frequently used commands should be listed first. // more frequently used commands should be listed first.
Model, Model,
Personality,
Approvals, Approvals,
Permissions, Permissions,
#[strum(serialize = "setup-elevated-sandbox")] #[strum(serialize = "setup-elevated-sandbox")]
@@ -40,6 +39,7 @@ pub enum SlashCommand {
Feedback, Feedback,
Rollout, Rollout,
Ps, Ps,
Personality,
TestApproval, TestApproval,
} }