Skip to content

Commit

Permalink
Remove unnecessary null check
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Aug 27, 2024
1 parent 7561f87 commit b18ad4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/items/event-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {Score} from "../../api/types/levels/score";
],
template: `
<div class="flex flex-col gap-y-2.5">
@for (event of page?.events; track event) {
@for (event of page.events; track event) {
<app-event [event]="event" [submittingUser]="user(event.userId)!"
[user]="user(event.storedObjectId)"
[level]="level(event.storedSequentialId)"
Expand Down

0 comments on commit b18ad4c

Please sign in to comment.