We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60c586c + e2d0259 commit e9806f7Copy full SHA for e9806f7
src/contents/content.tsx
@@ -161,8 +161,8 @@ const IndexContent = () => {
161
162
const getCollapseExpandBtn = () => <button onClick={toggleExpandeHandler}> {isExpanded ? 'Collapse' : 'Expand'}</button>;
163
164
- const showDebugOverLay = (show = !envService.isProduction) => {
165
- if (show) return;
+ const showDebugOverLay = () => {
+ if (envService.isProduction) return;
166
167
return (
168
<div className="[ br-overlay ]" style={OVERLAY_STYLE}>
0 commit comments