Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
miladsoft committed Feb 28, 2024
1 parent e1498e0 commit edc2de7
Show file tree
Hide file tree
Showing 3 changed files with 601 additions and 471 deletions.
10 changes: 5 additions & 5 deletions src/Angor.Website/Layout/Header.razor
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling search: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling search: {ex.Message}");
}
}

Expand All @@ -111,7 +111,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling toggleDirection: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling toggleDirection: {ex.Message}");
}
}

Expand All @@ -123,7 +123,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling toggleTheme: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling toggleTheme: {ex.Message}");
}
}

Expand All @@ -135,7 +135,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling toggleMobileMenu: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling toggleMobileMenu: {ex.Message}");
}
}
private async Task InstallApp()
Expand All @@ -146,7 +146,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling installApp: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling installApp: {ex.Message}");
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Angor.Website/Layout/ScrollToTop.razor
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
catch (Exception ex)
{
Console.Error.WriteLine($"Error calling scrollToTop: {ex.Message}");
await Console.Error.WriteLineAsync($"Error calling scrollToTop: {ex.Message}");
}
}
}
Loading

0 comments on commit edc2de7

Please sign in to comment.