mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-10 15:13:02 -04:00
Make typescript happy, tsc test run in CI
This commit is contained in:
parent
5610df8b37
commit
a89e17a390
11 changed files with 45 additions and 36 deletions
|
@ -127,7 +127,7 @@ export default ErrorBoundary.wrap(function Settings() {
|
|||
disabled={p.required || dependency}
|
||||
key={p.name}
|
||||
value={settings.plugins[p.name].enabled || p.required || dependency}
|
||||
onChange={v => {
|
||||
onChange={(v: boolean) => {
|
||||
settings.plugins[p.name].enabled = v;
|
||||
let needsRestart = Boolean(p.patches?.length);
|
||||
if (v) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue