Skip to content

Commit 166a060

Browse files
committed
fix: prevent issue with missing export
1 parent e6194af commit 166a060

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

libs/ui/src/containers/Footer/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ const FooterLink = ({ href, external, label, utmSource: _utmSource, utmContent,
9494
}
9595

9696
export const GLOBAL_FOOTER_NAV_ITEMS = getGlobalFooterNavItems(false)
97+
export { getGlobalFooterNavItems }
9798

9899
export const Footer = ({
99100
description = GLOBAL_FOOTER_DESCRIPTION,

libs/ui/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export * from './consts'
66
export * from './containers/CowSwapSafeAppLink'
77
export * from './containers/ExternalLink'
88
export * from './containers/Footer'
9+
export { getGlobalFooterNavItems } from './containers/Footer'
910
export * from './enum'
1011
export * from './pure/ArrowIcon'
1112
export * from './pure/BackButton'

0 commit comments

Comments
 (0)