Skip to content

Commit

Permalink
Merge pull request #44 from dragonfruitnetwork/fix-obsolete-symbols
Browse files Browse the repository at this point in the history
Fix obsolete symbols
  • Loading branch information
aspriddell authored Nov 23, 2022
2 parents fef9d67 + 47cabda commit 3bfe8d2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
@code {

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

}
2 changes: 1 addition & 1 deletion DragonFruit.Sakura/Administration/Changelogs.razor
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
}
<MudButton Color="Color.Error"
StartIcon="@Icons.Rounded.Delete"
OnClick="() => DeleteModification(modification)">
OnClick="async () => await DeleteModification(modification)">
Delete
</MudButton>
</MudStack>
Expand Down
7 changes: 0 additions & 7 deletions DragonFruit.Sakura/Administration/Index.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using DragonFruit.Sakura.Network;
using DragonFruit.Sakura.Network.Requests;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.WebAssembly.Authentication;

namespace DragonFruit.Sakura.Administration
{
Expand All @@ -16,12 +15,6 @@ public partial class Index
[Inject]
private ApiClient Client { get; set; }

[Inject]
private NavigationManager Navigation { get; set; }

[Inject]
private SignOutSessionStateManager SignOutManager { get; set; }

private IReadOnlyList<ApiAppInfo> Apps { get; set; }

private AppFeatures SelectedAppFeature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
public string Colour { get; set; }

[Parameter]
public RenderFragment? IconHtml { get; set; }
public RenderFragment IconHtml { get; set; }

}

0 comments on commit 3bfe8d2

Please sign in to comment.