mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
add error handling
This commit is contained in:
parent
31f94d32d0
commit
22d0311ec4
@ -38,6 +38,7 @@ public partial class Chat : ComponentBase
|
||||
private string name = "";
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
try{
|
||||
var input = _searchServise.firstMassage;
|
||||
|
||||
if (input!=null){
|
||||
@ -71,6 +72,10 @@ public partial class Chat : ComponentBase
|
||||
}else{
|
||||
await LoadMessages();
|
||||
}
|
||||
}catch(Exception ex){
|
||||
Console.WriteLine($"Error OnInitializedAsync: {ex.Message}");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user