Remove testing code

This commit is contained in:
Kevin Zhang 2022-09-01 18:57:01 -05:00 committed by GitHub
parent 806720d611
commit 609e8e815c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<ShortCutModel> ShortCuts { get; set; } = new()
{
("spp", "sp play")
};
internal ObservableCollection<ShortCutModel> ShortCuts { get; set; } = new();
}
public enum LastQueryMode
@ -263,4 +260,4 @@ namespace Flow.Launcher.Infrastructure.UserSettings
return new ShortCutModel(value.Key, value.Value);
}
}
}
}