Remove commented-out code in auto_update (#4149)

This PR removes some commented-out code in the `auto_update` crate that
we no longer need.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-01-18 23:12:42 -05:00 committed by GitHub
parent fd726ad6ee
commit ebce6226bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -96,12 +96,6 @@ pub fn init(http_client: Arc<dyn HttpClient>, server_url: String, cx: &mut AppCo
workspace.register_action(|_, action, cx| { workspace.register_action(|_, action, cx| {
view_release_notes(action, cx); view_release_notes(action, cx);
}); });
// @nate - code to trigger update notification on launch
// todo!("remove this when Nate is done")
// workspace.show_notification(0, _cx, |cx| {
// cx.build_view(|_| UpdateNotification::new(SemanticVersion::from_str("1.1.1").unwrap()))
// });
}) })
.detach(); .detach();