We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5257af3 commit 7bd5fccCopy full SHA for 7bd5fcc
Tevling/Pages/Dashboard.razor
@@ -34,11 +34,11 @@
34
{
35
@foreach (KeyValuePair<Challenge, (string, string)> challenge in RecentOutdatedChallenges)
36
37
- <div class="joined-challenge-card d-flex flex-row mt-2">
38
- <span class="challenge-title">@challenge.Key.Title</span>
39
- <span class="challenge-placement">@challenge.Value.Item1</span>
40
- <span class="challenge-score">@challenge.Value.Item2</span>
41
- </div>
+ <JoinedChallengeCard
+ Title="@challenge.Key.Title"
+ Placement="@challenge.Value.Item1"
+ Score="@challenge.Value.Item2"
+ />
42
}
43
44
</div>
0 commit comments