From 4d3b3c5dde1a6ca17c4ed80e780400137f844484 Mon Sep 17 00:00:00 2001 From: Brian Blonski Date: Mon, 23 Sep 2024 16:42:45 -0700 Subject: [PATCH] Set default icon --- src/logics/icons.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logics/icons.ts b/src/logics/icons.ts index ba05bf8..1dff2c4 100644 --- a/src/logics/icons.ts +++ b/src/logics/icons.ts @@ -13,7 +13,7 @@ const getIcon: IconProvider = (label: string | undefined) => { if (icon) { return icon; } - return null; + return require('../assets/icons/default.png'); } export default getIcon;