Skip to content

Commit 6f6c000

Browse files
committed
fix(app2): deps hash
1 parent 5dc2a0c commit 6f6c000

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app2/app2.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ _: {
2020
{
2121
packages = {
2222
app2 = jsPkgs.buildNpmPackage {
23-
npmDepsHash = "sha256-R+7qoYHPuUmBKnvBwjsb4arZQikBckKndQlSYH2lQ5I=";
23+
npmDepsHash = "sha256-LlSGZhPStl8xGhbHfQ6uXskvnK6yjL9VTY7/iUK1/Hg=";
2424
src = ./.;
2525
sourceRoot = "app2";
2626
npmFlags = [ "--legacy-peer-deps" ];

app2/src/lib/components/layout/Sidebar/navigation.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import SharpTransferIcon from "$lib/components/icons/SharpTransferIcon.svelte"
22
import SharpListIcon from "$lib/components/icons/SharpListIcon.svelte"
33
import SharpDashboardIcon from "$lib/components/icons/SharpDashboardIcon.svelte"
44
import SharpStakeIcon from "$lib/components/icons/SharpStakeIcon.svelte"
5+
import SharpChannelsIcon from "$lib/components/icons/SharpChannelsIcon.svelte"
56
import OutlineControlPointDuplicate from "$lib/components/icons/OutlineControlPointDuplicate.svelte"
67
import type { Component } from "svelte"
78

@@ -42,7 +43,7 @@ export const navigation: Array<NavSection> = [
4243
{
4344
path: "/explorer",
4445
title: "Explorer",
45-
icon: SharpListIcon,
46+
icon: SharpChannelsIcon,
4647
subroutes: [
4748
{
4849
path: "/explorer/transfers",

0 commit comments

Comments
 (0)