summaryrefslogtreecommitdiff
path: root/sw-ui/src/main/kotlin/org
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 17:17:48 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 17:17:48 +0100
commit46cfe689e2d28c918356b556d7a384a615263f8b (patch)
tree5838ae5f46d63b8e8044ce30d1c7c317892e99d0 /sw-ui/src/main/kotlin/org
parentCleanup experimental annotations (diff)
downloadseven-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.kt2
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() },
)
}
bgstack15