aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/components.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/html/components.scm')
-rw-r--r--module/calp/html/components.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/module/calp/html/components.scm b/module/calp/html/components.scm
index 2f8c85ec..37d50697 100644
--- a/module/calp/html/components.scm
+++ b/module/calp/html/components.scm
@@ -57,7 +57,10 @@
allow-other-keys:
rest: args)
(when (and onclick href)
- (error "Only give one of onclick, href and submit."))
+ (scm-error 'wrong-type-arg "btn"
+ "href, onclick, and submit mutually exclusive. href = ~s, onclick = ~s, submit = ~s."
+ (list href onclick submit)
+ #f))
(let ((body #f))
`(,(cond [href 'a]