Remove about heading

This commit is contained in:
Jeremy Soller 2024-02-28 09:33:43 -07:00
parent 910dff2c90
commit 8cb92d36ae
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
2 changed files with 1 additions and 2 deletions

View file

@ -4,7 +4,6 @@ new-terminal = New terminal
# Context Pages # Context Pages
## About ## About
about = About
git-description = Git commit {$hash} on {$date} git-description = Git commit {$hash} on {$date}
## Color schemes ## Color schemes

View file

@ -339,7 +339,7 @@ pub enum ContextPage {
impl ContextPage { impl ContextPage {
fn title(&self) -> String { fn title(&self) -> String {
match self { match self {
Self::About => fl!("about"), Self::About => String::new(),
Self::ColorSchemes(_color_scheme_kind) => fl!("color-schemes"), Self::ColorSchemes(_color_scheme_kind) => fl!("color-schemes"),
Self::Profiles => fl!("profiles"), Self::Profiles => fl!("profiles"),
Self::Settings => fl!("settings"), Self::Settings => fl!("settings"),