Skip to content

Commit

Permalink
fix: empty icon fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanPreslitsky authored and martyanovandrey committed Dec 17, 2024
1 parent 697bb07 commit 0220768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ConstructorPage/useNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ export const useNavigation = (
},
renderNavigation: () => (
<CustomNavigation
logo={logo}
logo={{...logo, icon: logo.icon ?? ''}}
data={navigationData}
navigationTocData={navigationTocData}
mobileControlsData={mobileControlsData}
/>
),
logo,
logo: {...logo, icon: logo.icon ?? ''},
}),
[navigationData, navigationTocData, mobileControlsData, logo],
);
Expand Down

0 comments on commit 0220768

Please sign in to comment.