summaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/components/checkbox_placeholder.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/checkbox_placeholder.rs b/src/components/checkbox_placeholder.rs
index 2006808..27aac13 100644
--- a/src/components/checkbox_placeholder.rs
+++ b/src/components/checkbox_placeholder.rs
@@ -18,10 +18,7 @@ use leptos::{
use crate::components::get_id;
#[component]
-pub fn CheckboxPlaceholder(
- label: &'static str,
- node_ref: NodeRef<Input>,
-) -> impl IntoView {
+pub fn CheckboxPlaceholder(label: &'static str, node_ref: NodeRef<Input>) -> impl IntoView {
let id = get_id();
view! {