Refactor more code around commit button text (#25990)

Missed this when doing https://github.com/zed-industries/zed/pull/25988

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2025-03-03 22:33:38 -05:00 committed by GitHub
parent 88940732ca
commit ffe2bed1e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 13 deletions

View file

@ -1974,14 +1974,7 @@ impl GitPanel {
} else if !self.has_write_access(cx) {
(false, "You do not have write access to this project")
} else {
(
true,
if self.has_staged_changes() {
"Commit"
} else {
"Commit Tracked"
},
)
(true, self.commit_button_title())
}
}