From ee2dacc43bcd1a2fa9e626192a9685c404ccdaa6 Mon Sep 17 00:00:00 2001 From: Hugo Lextrait Date: Fri, 17 Jan 2025 16:40:31 +0100 Subject: [PATCH] Optionnal footer navigation links --- src/config/type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/type.ts b/src/config/type.ts index e2930d1..837cfc9 100644 --- a/src/config/type.ts +++ b/src/config/type.ts @@ -202,7 +202,7 @@ export type MerklConfig = { [key: string]: string; }; footerLinks: { image: string; link: string; key: string }[]; - footerNavLinks: routesType; + footerNavLinks?: routesType; }; export function createConfig({ wagmi, ...config }: MerklConfig) {