summary refs log tree commit diff stats
path: root/src/components/checkbox_placeholder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/checkbox_placeholder.rs')
-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! {