Skip to content

Commit

Permalink
🤖 Apply formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 14, 2024
1 parent 82da98c commit e391915
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<script lang="ts">
import AllTransactionsList from '$lib/components/transactions/AllTransactionsList.svelte';
import MessageBox from '$lib/components/ui/MessageBox.svelte';
import PageTitle from '$lib/components/ui/PageTitle.svelte';
import { i18n } from '$lib/stores/i18n.store';
import MessageBox from '$lib/components/ui/MessageBox.svelte';
</script>

<div class="flex flex-col gap-5">
<PageTitle>{$i18n.activity.text.title}</PageTitle>
<PageTitle>{$i18n.activity.text.title}</PageTitle>

<MessageBox level="plain">
{$i18n.activity.info.btc_transactions}
</MessageBox>
<MessageBox level="plain">
{$i18n.activity.info.btc_transactions}
</MessageBox>

<AllTransactionsList />
<AllTransactionsList />
</div>
2 changes: 1 addition & 1 deletion src/frontend/src/lib/components/ui/MessageBox.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import IconInfo from '$lib/components/icons/lucide/IconInfo.svelte';
export let level: 'plain'|'info' | 'light-warning' | 'error' = 'info';
export let level: 'plain' | 'info' | 'light-warning' | 'error' = 'info';
</script>

<div
Expand Down

0 comments on commit e391915

Please sign in to comment.