Removed redundant init value

This commit is contained in:
Thorsten Sommer 2025-05-29 21:58:18 +02:00
parent bc5c747f83
commit cd3e402295
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -8,7 +8,7 @@ public partial class CodeTabs : ComponentBase
public RenderFragment? ChildContent { get; set; } public RenderFragment? ChildContent { get; set; }
[Parameter] [Parameter]
public int SelectedIndex { get; set; } = 0; public int SelectedIndex { get; set; }
private readonly List<CodeTabItem> blocks = new(); private readonly List<CodeTabItem> blocks = new();