Skip to content

Commit

Permalink
Remove feedback form if not authed
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Jan 6, 2025
1 parent fa6998a commit 71c905e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h2 id="scoreboard" class="text-center my-4">
</h2>
<app-scoreboard [gameId]="ctx.game.id"></app-scoreboard>
</div>
<ng-container *ngIf="ctx.game.feedbackTemplateId && !ctx.player.session?.isBefore">
<ng-container *ngIf="ctx.user?.id && ctx.game.feedbackTemplateId && !ctx.player.session?.isBefore">
<div class="col-6 my-4">
<h2>Feedback</h2>
<app-feedback-submission-form [templateId]="ctx.game.feedbackTemplateId"
Expand Down

0 comments on commit 71c905e

Please sign in to comment.