feat(combat): start real combats from the hunt page and navigate to /combat/:combatId

This commit is contained in:
Bastian Wagner
2026-08-19 17:03:35 +02:00
parent 1fd62cddde
commit aa8c374db0
3 changed files with 95 additions and 28 deletions

View File

@@ -64,4 +64,11 @@
<button type="button" data-hunt-retry (click)="retry()">Erneut versuchen</button>
</section>
}
@if (combatStore.error(); as combatError) {
<section class="hunt-page__error" role="alert">
<p>{{ combatError }}</p>
<button type="button" data-hunt-combat-dismiss (click)="dismissCombatError()">Schließen</button>
</section>
}
</section>