From 0220768910f9c4bf4d5264655811e80eaa18198a Mon Sep 17 00:00:00 2001 From: Roman Preslitsky Date: Tue, 17 Dec 2024 10:50:48 +0300 Subject: [PATCH] fix: empty icon fix --- src/components/ConstructorPage/useNavigation.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ConstructorPage/useNavigation.tsx b/src/components/ConstructorPage/useNavigation.tsx index 7112464..f675dd1 100644 --- a/src/components/ConstructorPage/useNavigation.tsx +++ b/src/components/ConstructorPage/useNavigation.tsx @@ -67,13 +67,13 @@ export const useNavigation = ( }, renderNavigation: () => ( ), - logo, + logo: {...logo, icon: logo.icon ?? ''}, }), [navigationData, navigationTocData, mobileControlsData, logo], );