File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ This is a React-based monitoring and management interface for YDB clusters. The
1818
1919## Critical Bug Prevention Patterns
2020
21- > Based on analysis of 267 code review comments - these prevent 67% of production issues.
22-
2321### React Performance (MANDATORY)
2422- ** ALWAYS** use ` useMemo ` for expensive computations, object/array creation
2523- ** ALWAYS** use ` useCallback ` for functions in effect dependencies
Original file line number Diff line number Diff line change 9393
9494## Critical Bug Prevention Patterns
9595
96- > Based on analysis of 267 code review comments from the last three months, these patterns prevent 67% of production issues.
97-
9896### Memory Management
9997- ** ALWAYS** dispose Monaco Editor instances: ` return () => editor.dispose(); ` in useEffect
10098- ** NEVER** allow memory leaks in long-running components
Original file line number Diff line number Diff line change 9393
9494## Critical Bug Prevention Patterns
9595
96- > Based on analysis of 267 code review comments from the last three months, these patterns prevent 67% of production issues.
97-
9896### Memory Management
9997- ** ALWAYS** dispose Monaco Editor instances: ` return () => editor.dispose(); ` in useEffect
10098- ** NEVER** allow memory leaks in long-running components
You can’t perform that action at this time.
0 commit comments