Disable Copilot entirely for stable releases

This lets us remove the logic for detecting whether a user is a staff
member.
This commit is contained in:
Antonio Scandurra 2023-04-05 15:49:59 +02:00
parent 781d065d0b
commit 15b26e10d4
4 changed files with 15 additions and 56 deletions

View file

@ -161,7 +161,7 @@ fn main() {
terminal_view::init(cx);
theme_testbench::init(cx);
recent_projects::init(cx);
copilot::init(client.clone(), node_runtime, cx);
copilot::init(http.clone(), node_runtime, cx);
cx.spawn(|cx| watch_themes(fs.clone(), themes.clone(), cx))
.detach();