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 78ac3ca commit 8da2dd8Copy full SHA for 8da2dd8
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