We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5bf43f commit c78eb11Copy full SHA for c78eb11
src/renderer/extensions/rule-editor/components/editor/index.tsx
@@ -28,7 +28,7 @@ export const Editor = (props: Props) => {
28
const onSaveRef = useRef(onSave);
29
onSaveRef.current = onSave;
30
31
- const containerRef = useRef<HTMLDivElement | undefined>();
+ const containerRef = useRef<HTMLDivElement | null>(null);
32
33
useEffect(() => {
34
// display a fast button when hover on line
0 commit comments