Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Urban committed May 9, 2024
1 parent db13447 commit 26dd277
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Ididit.Blazor/Components/CalendarComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@if (Habit is null || Habit.TimesDoneByDay is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Categories.razor
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

@if (CategoryService.Categories is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Habits.razor
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

@if (HabitService.Habits is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else if (columnWidth != 0)
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Notes.razor
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

@if (NoteService.Notes is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Priorities.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="my-1">
@if (PriorityService.Priorities is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Search.razor
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div>
@if (CategoryService.Categories is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Tasks.razor
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

@if (TaskService.Tasks is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Ididit.Blazor/Pages/Trash.razor
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

@if (TrashService.Models is null)
{
<p>Failed to load. Try refreshing.</p>
@* <p>Failed to load. Try refreshing.</p> *@
}
else
{
Expand Down

0 comments on commit 26dd277

Please sign in to comment.