mirror of
https://github.com/9technologygroup/patchmon.net.git
synced 2025-11-10 17:05:48 +00:00
fix(frontend): unused parameters
This commit is contained in:
@@ -529,7 +529,10 @@ const Settings = () => {
|
||||
type="number"
|
||||
value={formData.serverPort}
|
||||
onChange={(e) =>
|
||||
handleInputChange("serverPort", parseInt(e.target.value, 10))
|
||||
handleInputChange(
|
||||
"serverPort",
|
||||
parseInt(e.target.value, 10),
|
||||
)
|
||||
}
|
||||
className={`w-full border rounded-md shadow-sm focus:ring-primary-500 focus:border-primary-500 bg-white dark:bg-secondary-700 text-secondary-900 dark:text-white ${
|
||||
errors.serverPort
|
||||
|
||||
Reference in New Issue
Block a user