Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani Jerez committed Sep 29, 2023
1 parent 8c1786d commit 97f31b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<LayoutView Layout="@typeof(MainLayout)">
@inject NavigationManager Navigation
@{
Navigation.NavigateTo("/");
Navigation.NavigateTo("");
}
</LayoutView>
</NotFound>
Expand Down
4 changes: 3 additions & 1 deletion src/Pages/Word.razor
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
}
else
{
<MudText Typo="Typo.h4" Align="Align.Center" Color="Color.Secondary">Término no '@word' encontrado 😧</MudText>
<MudText Typo="Typo.h2" Align="Align.Center" Color="Color.Primary">@word</MudText>
<MudText Typo="Typo.h3" Align="Align.Center" Color="Color.Secondary">No encontrado (404)</MudText>
<MudText Typo="Typo.h2" Align="Align.Center">🤷</MudText>
}

</MudItem>
Expand Down

0 comments on commit 97f31b1

Please sign in to comment.