From 609e8e815cb6614870e1164d9e1e259d7c1c8484 Mon Sep 17 00:00:00 2001 From: Kevin Zhang <45326534+taooceros@users.noreply.github.com> Date: Thu, 1 Sep 2022 18:57:01 -0500 Subject: [PATCH] Remove testing code --- Flow.Launcher.Infrastructure/UserSettings/Settings.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index 1c84c5fb4..b56989e7d 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -204,10 +204,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings // This needs to be loaded last by staying at the bottom public PluginsSettings PluginSettings { get; set; } = new PluginsSettings(); - internal ObservableCollection ShortCuts { get; set; } = new() - { - ("spp", "sp play") - }; + internal ObservableCollection ShortCuts { get; set; } = new(); } public enum LastQueryMode @@ -263,4 +260,4 @@ namespace Flow.Launcher.Infrastructure.UserSettings return new ShortCutModel(value.Key, value.Value); } } -} \ No newline at end of file +}