+ event.key === 'Enter' && toggleOpen()}
+ style={{ cursor: 'pointer', fontWeight: 'bold' }}
+ >
+
+ {title}
+
+
+
+ {children}
+
+
+ )
+}
+
+export default CollapsableBox
diff --git a/components/fiscal-sponsorship/first/stats.js b/components/fiscal-sponsorship/first/stats.js
index bf2d0d41..8d9caab5 100644
--- a/components/fiscal-sponsorship/first/stats.js
+++ b/components/fiscal-sponsorship/first/stats.js
@@ -65,7 +65,10 @@ const Stats = ({ stats }) => {
return () => observer.disconnect()
}, [stats.transactions_volume])
- if (stats.transactions_volume === undefined) return null
+ if (stats.transactions_volume === undefined) {
+ return null
+ }
+
return (