Merge pull request #2095 from zed-industries/fix-crash-when-opening-feedback-while-in-call

Fix crash when opening feedback while in call
This commit is contained in:
Joseph T. Lyons 2023-01-25 21:16:12 -05:00 committed by GitHub
commit a4d9d6c750
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 29 deletions

View file

@ -135,7 +135,6 @@ fn main() {
client::init(client.clone(), cx);
command_palette::init(cx);
editor::init(cx);
feedback::init(cx);
go_to_line::init(cx);
file_finder::init(cx);
outline::init(cx);
@ -183,6 +182,7 @@ fn main() {
theme_selector::init(app_state.clone(), cx);
zed::init(&app_state, cx);
collab_ui::init(app_state.clone(), cx);
feedback::init(app_state.clone(), cx);
cx.set_menus(menus::menus());