diff --git a/frontend/src/components/icons/Breez.tsx b/frontend/src/components/icons/Breez.tsx
deleted file mode 100644
index 7f026776..00000000
--- a/frontend/src/components/icons/Breez.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-export const BreezIcon = () => {
- return (
-
- );
-};
diff --git a/frontend/src/components/icons/Greenlight.tsx b/frontend/src/components/icons/Greenlight.tsx
deleted file mode 100644
index 0d963a34..00000000
--- a/frontend/src/components/icons/Greenlight.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-export const GreenlightIcon = () => {
- return (
-
- );
-};
diff --git a/frontend/src/screens/setup/SetupNode.tsx b/frontend/src/screens/setup/SetupNode.tsx
index 1e224a02..f754a6dd 100644
--- a/frontend/src/screens/setup/SetupNode.tsx
+++ b/frontend/src/screens/setup/SetupNode.tsx
@@ -2,8 +2,6 @@ import React, { ReactElement } from "react";
import { useNavigate } from "react-router-dom";
import Container from "src/components/Container";
import TwoColumnLayoutHeader from "src/components/TwoColumnLayoutHeader";
-import { BreezIcon } from "src/components/icons/Breez";
-import { GreenlightIcon } from "src/components/icons/Greenlight";
import { LDKIcon } from "src/components/icons/LDK";
import { PhoenixdIcon } from "src/components/icons/Phoenixd";
import { Button } from "src/components/ui/button";
@@ -20,33 +18,26 @@ type BackendTypeDisplayConfig = {
icon: ReactElement;
};
-const backendTypeDisplayConfigs: Record =
- {
- LDK: {
- title: "LDK",
- icon: ,
- },
- PHOENIX: {
- title: "phoenixd",
- icon: ,
- },
- BREEZ: {
- title: "Breez SDK",
- icon: ,
- },
- GREENLIGHT: {
- title: "Greenlight",
- icon: ,
- },
- LND: {
- title: "LND",
- icon: ,
- },
- CASHU: {
- title: "Cashu Mint",
- icon: ,
- },
- };
+const backendTypeDisplayConfigs: Partial<
+ Record
+> = {
+ LDK: {
+ title: "LDK",
+ icon: ,
+ },
+ PHOENIX: {
+ title: "phoenixd",
+ icon: ,
+ },
+ LND: {
+ title: "LND",
+ icon: ,
+ },
+ CASHU: {
+ title: "Cashu Mint",
+ icon: ,
+ },
+};
const backendTypeDisplayConfigList = Object.entries(
backendTypeDisplayConfigs