Skip to content

Commit

Permalink
pump a new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Apr 12, 2024
1 parent 9fa7d00 commit ee5ed3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bearby-extension",
"version": "0.4.7",
"version": "0.4.8",
"repository": "[email protected]:bearby-wallet/bearby-extension.git",
"author": "Rinat <[email protected]>",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions popup/components/Transaction.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
$: amount = Number(tx.tokenAmount) / 10 ** tx.token.decimals;
$: converted = 0;
$: date = new Date(tx.timestamp).toLocaleDateString();
console.log(tx);
</script>

<div
Expand All @@ -25,7 +23,9 @@
<div>
<h3>
{tx.func || $_(`confirm.params.types.${tx.type}`)}
{tx.title ? `(${tx.title})` : ""}
<b>
{tx.title ? `(${tx.title})` : ""}
</b>
</h3>
<p>
{date}
Expand Down

0 comments on commit ee5ed3c

Please sign in to comment.