refactor: increase update rate (#430)

* refactor: remove unused components

* refactor: increase timer refresh rate
This commit is contained in:
Carlos Valente
2023-06-08 22:16:15 +02:00
committed by GitHub
parent cf6ce880f4
commit 971a76673b
14 changed files with 92 additions and 333 deletions
@@ -33,7 +33,7 @@ const sectionText: { [key in TimerLifeCycle]: { title: string; subtitle: string
},
onUpdate: {
title: 'On Every Second',
subtitle: 'Triggers when timers are updated (at least once a second, can be more)',
subtitle: 'Triggers when a running timer is updated (at least once a second, can be more)',
},
onFinish: {
title: 'On Finish',
@@ -2,10 +2,3 @@ export const inputProps = {
size: 'sm',
autoComplete: 'off',
};
export const portInputProps = {
...inputProps,
type: 'number',
min: '1024',
max: '65535',
};