Fix: Wrong type

This commit is contained in:
Luc Mcgrady 2025-06-03 09:09:18 +01:00
parent 71d6ed2748
commit 620da8c6f9
No known key found for this signature in database
GPG key ID: 4F3D7A0B17CC3D9C

View file

@ -32,7 +32,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
const validParamCounts = [0, 17, 19, 21];
function update(e: Event): void {
const input = e.target as HTMLInputElement;
const input = e.target as HTMLTextAreaElement;
const newValue = input.value
.replace(/ /g, "")
.split(",")