Skip to content

Commit

Permalink
#302 remove unused props in BasePage
Browse files Browse the repository at this point in the history
  • Loading branch information
pournasserian committed Dec 9, 2023
1 parent efea849 commit f4d4fbb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/FluentCMS.Web.UI/Pages/BasePage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,10 @@ public class BasePage : ComponentBase, IDisposable
public const string ATTRIBUTE = "FluentCMS";
protected CancellationTokenSource CancellationTokenSource = new();
protected CancellationToken CancellationToken => CancellationTokenSource.Token;

[Parameter]
public string? Route { get; set; }

[SupplyParameterFromQuery]
public Guid? PluginId { get; set; }

[SupplyParameterFromQuery]
public string? ViewMode { get; set; }

[CascadingParameter]
public AppState? AppState { get; set; }

Expand Down

0 comments on commit f4d4fbb

Please sign in to comment.