🎨 Improve code formatting for better readability in tournament status components

This commit is contained in:
2026-01-29 05:32:59 +00:00
parent 38603a46d8
commit e4f99e82f4

View File

@@ -31,12 +31,13 @@
<div v-if="loading" class="status loading"> Loading tournaments...</div>
<!-- Error State -->
<div v-else-if="error" class="status error">
Error: {{ error }}
</div>
<div v-else-if="error" class="status error"> Error: {{ error }}</div>
<!-- Empty State -->
<div v-else-if="!tournaments || tournaments.length === 0" class="status empty">
<div
v-else-if="!tournaments || tournaments.length === 0"
class="status empty"
>
No tournaments found. Create one at
<a href="https://challonge.com" target="_blank">Challonge.com</a>
</div>