diff --git a/WebApp/Components/Features/Calendar/Import.razor b/WebApp/Components/Features/Calendar/Import.razor index 10a899d..c7f8b32 100644 --- a/WebApp/Components/Features/Calendar/Import.razor +++ b/WebApp/Components/Features/Calendar/Import.razor @@ -343,9 +343,9 @@ await Context.SaveChangesAsync(); Snackbar.Add($"Successfully saved {savedCount} occurrence(s) to database", Severity.Success); - // Navigate back to the calendar index after a short delay - await Task.Delay(1000); - NavigationManager.NavigateTo("/calendar/event-occurrences"); + // Clear input and output instead of navigating + _inputText = string.Empty; + _parseResult = null; } catch (Exception ex) {