We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4277064 commit 43d9ffaCopy full SHA for 43d9ffa
1 file changed
frontend/src/routes/auction/+page.svelte
@@ -29,9 +29,7 @@
29
30
<div class="mr-auto flex flex-col gap-8 pt-8">
31
<h1 class="text-xl font-bold">Auction</h1>
32
- {#if serverState.isAdmin && serverState.sudoEnabled}
33
- <CreateAuction />
34
- {/if}
+ <CreateAuction />
35
36
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
37
{#each Array.from(serverState.auctions.values()).sort((a, b) => (a.transactionTimestamp?.seconds ?? 0) - (b.transactionTimestamp?.seconds ?? 0)) as auction}
0 commit comments