diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-10 17:17:48 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-10 17:17:48 +0100 |
commit | 46cfe689e2d28c918356b556d7a384a615263f8b (patch) | |
tree | 5838ae5f46d63b8e8044ce30d1c7c317892e99d0 /sw-ui/src/main/kotlin/org | |
parent | Cleanup experimental annotations (diff) | |
download | seven-wonders-46cfe689e2d28c918356b556d7a384a615263f8b.tar.gz seven-wonders-46cfe689e2d28c918356b556d7a384a615263f8b.tar.bz2 seven-wonders-46cfe689e2d28c918356b556d7a384a615263f8b.zip |
Clean unnecessary param
Diffstat (limited to 'sw-ui/src/main/kotlin/org')
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/ChooseNameForm.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/ChooseNameForm.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/ChooseNameForm.kt index 2ebabcc9..800c71f0 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/ChooseNameForm.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/home/ChooseNameForm.kt @@ -63,7 +63,7 @@ private class ChooseNameForm(props: ChooseNameFormProps) : RComponent<ChooseName large = true, icon = "random", intent = Intent.PRIMARY, - onClick = { e -> fillRandomUsername() }, + onClick = { fillRandomUsername() }, ) } |