We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8262e5d commit b77b262Copy full SHA for b77b262
1 file changed
src/routes/(protected)/banks/[bank_id]/+page.svelte
@@ -16,9 +16,9 @@
16
{#if data.bank}
17
<div class="flex items-center gap-3 mb-2">
18
<Building class="size-8 text-secondary-500" />
19
- <h1 class="h1">{data.bank.full_name}</h1>
+ <h1 class="h1 font-mono">{data.bank_id}</h1>
20
</div>
21
- <p class="text-surface-400 mb-8 font-mono">{data.bank_id}</p>
+ <p class="text-surface-400 mb-8">{data.bank.full_name}</p>
22
23
<div class="card p-6 preset-filled-surface-50-950 mb-6">
24
<h2 class="h3 mb-4 flex items-center gap-2">
0 commit comments