This commit is contained in:
2026-07-18 15:21:20 -04:00
parent 6062d5b60c
commit 74f065e0f5
51 changed files with 634 additions and 285 deletions
+3 -2
View File
@@ -31,11 +31,11 @@
@code {
private string _countdownString = "00:00:00";
private System.Threading.Timer? _timer;
private Timer? _timer;
protected override void OnInitialized()
{
_timer = new System.Threading.Timer(_ =>
_timer = new Timer(_ =>
{
UpdateCountdown();
InvokeAsync(StateHasChanged);
@@ -60,4 +60,5 @@
{
_timer?.Dispose();
}
}