-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82da98c
commit e391915
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
src/frontend/src/lib/components/transactions/AllTransactions.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters