Remove unused state prop

This commit is contained in:
pizzaboxer 2024-06-17 12:35:22 +01:00
parent b84522a643
commit cd34f2a108
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@
{ {
public class State public class State
{ {
public string LastEnrolledChannel { get; set; } = "";
public bool ShowFFlagEditorWarning { get; set; } = true; public bool ShowFFlagEditorWarning { get; set; } = true;
[Obsolete("Use PlayerVersionGuid instead", true)] [Obsolete("Use PlayerVersionGuid instead", true)]

View File

@ -66,7 +66,6 @@ namespace Bloxstrap
public static void EnrollChannel(string channel) public static void EnrollChannel(string channel)
{ {
ChangeChannel(channel); ChangeChannel(channel);
App.State.Prop.LastEnrolledChannel = channel;
App.State.Save(); App.State.Save();
} }