This commit is contained in:
Olivier Gagnon
2021-09-25 13:31:42 -04:00
parent f7aa393a8f
commit ef17f0d617
9 changed files with 38 additions and 24 deletions

View File

@@ -14,7 +14,7 @@ export function ProgramsRoot(): React.ReactElement {
}
useEffect(() => {
const id = setInterval(rerender, 1000);
const id = setInterval(rerender, 200);
return () => clearInterval(id);
}, []);
@@ -33,7 +33,7 @@ export function ProgramsRoot(): React.ReactElement {
return (
<React.Fragment key={program.name}>
<Tooltip title={create.tooltip}>
<Tooltip title={create.tooltip} disableInteractive>
<Button
sx={{ my: 1 }}
onClick={(event) => {