Skip to content

Commit 0fee5dc

Browse files
committed
🔥 Removing debug print
1 parent 1629a25 commit 0fee5dc

File tree

1 file changed

+0
-2
lines changed
  • crates/bolt-cli/src/templates/component

1 file changed

+0
-2
lines changed

crates/bolt-cli/src/templates/component/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ pub fn component_type(idl: &Idl, component_id: &str) -> Result<String> {
3939
None => return Err(anyhow::anyhow!("Component type not found in IDL")),
4040
};
4141

42-
let component_name = component_account.name.to_upper_camel_case();
43-
println!("Component name: {}", component_name);
4442
let component_code = component_to_rust_code(type_def, component_id);
4543
let types_code = component_types_to_rust_code(&idl.types, &component_account.name);
4644
Ok(format!(

0 commit comments

Comments
 (0)