Skip to content

Commit

Permalink
Fix a typo (#14503)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek authored Oct 13, 2023
1 parent 031db8f commit 0f5d992
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
dynamic shape = await NotificationDisplayDriver.BuildDisplayAsync(notification, UpdateModelAccessor.ModelUpdater, "Header");
shape.Notification = notification;
<div class="@(i == maxCount - 1 ? string.Empty : "border-bottom")">
@await DisplayAsync(notification)
@await DisplayAsync(shape)
</div>
}
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
dynamic shape = await NotificationDisplayDriver.BuildDisplayAsync(notification, UpdateModelAccessor.ModelUpdater, "Header");
shape.Notification = notification;
<div class="@(i == maxCount - 1 ? string.Empty : "border-bottom")">
@await DisplayAsync(notification)
@await DisplayAsync(shape)
</div>
}
</li>
Expand Down

0 comments on commit 0f5d992

Please sign in to comment.