diff --git a/src/components/LayerUI.tsx b/src/components/LayerUI.tsx index 5c8adcf7..6bcaac7e 100644 --- a/src/components/LayerUI.tsx +++ b/src/components/LayerUI.tsx @@ -704,6 +704,7 @@ const areEqual = (prev: LayerUIProps, next: LayerUIProps) => { const keys = Object.keys(prevAppState) as (keyof Partial)[]; return ( + prev.renderCustomFooter === next.renderCustomFooter && prev.langCode === next.langCode && prev.elements === next.elements && keys.every((key) => prevAppState[key] === nextAppState[key])