Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Misieq01 committed Sep 19, 2024
1 parent 1130fa9 commit 3b70dcb
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src-tauri/src/notification_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,8 @@ impl NotificationManager {
CurrentOperatingSystem::Linux => {
notification.auto_icon().appname("Tari Universe").finalize()
}
CurrentOperatingSystem::MacOS => {
notification.finalize()
}
CurrentOperatingSystem::Windows => {
notification.finalize()
}
CurrentOperatingSystem::MacOS => notification.finalize(),
CurrentOperatingSystem::Windows => notification.finalize(),
}
}
fn detect_current_os() -> CurrentOperatingSystem {
Expand Down

0 comments on commit 3b70dcb

Please sign in to comment.