Skip to content

Commit

Permalink
Hotfix: Missing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
margual56 committed Sep 27, 2023
1 parent 6ad83be commit 201e3c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nix-bucks",
"private": true,
"version": "0.1.1",
"version": "0.1.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "nix-bucks",
"version": "0.1.1"
"version": "0.1.2"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Stats.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<p class="amount" class:negative={$monthly_cost.includes("-")}>{$monthly_cost}</p>
</div>
<div class="card">
<img src="/src/assets/icon-arrowup.svg" alt="" width="32" height="32" />
<img src="/icon-arrowup.svg" alt="" width="32" height="32" />
<p class="title">Total average cost per year</p>
<p class="amount" class:negative={$yearly_cost.includes("-")}>{$yearly_cost}</p>
</div>
Expand Down

0 comments on commit 201e3c7

Please sign in to comment.