We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1629a25 commit 0fee5dcCopy full SHA for 0fee5dc
crates/bolt-cli/src/templates/component/mod.rs
@@ -39,8 +39,6 @@ pub fn component_type(idl: &Idl, component_id: &str) -> Result<String> {
39
None => return Err(anyhow::anyhow!("Component type not found in IDL")),
40
};
41
42
- let component_name = component_account.name.to_upper_camel_case();
43
- println!("Component name: {}", component_name);
44
let component_code = component_to_rust_code(type_def, component_id);
45
let types_code = component_types_to_rust_code(&idl.types, &component_account.name);
46
Ok(format!(
0 commit comments