diff --git a/MareSynchronos/UI/IntroUI.cs b/MareSynchronos/UI/IntroUI.cs index 39b3f36..4279cbb 100644 --- a/MareSynchronos/UI/IntroUI.cs +++ b/MareSynchronos/UI/IntroUI.cs @@ -84,18 +84,7 @@ public partial class IntroUi : WindowMediatorSubscriberBase if (ImGui.Button("Next##toAgreement")) { _readFirstPage = true; -#if !DEBUG - _timeoutTask = Task.Run(async () => - { - for (int i = 60; i > 0; i--) - { - _timeoutLabel = $"{Strings.ToS.ButtonWillBeAvailableIn} {i}s"; - await Task.Delay(TimeSpan.FromSeconds(1)).ConfigureAwait(false); - } - }); -#else _timeoutTask = Task.CompletedTask; -#endif } } else if (!_configService.Current.AcceptedAgreement && _readFirstPage)