diff --git a/client/src/utils/data_converter.rs b/client/src/utils/data_converter.rs index 0293b85..c0ae9ee 100644 --- a/client/src/utils/data_converter.rs +++ b/client/src/utils/data_converter.rs @@ -1,7 +1,7 @@ // src/utils/data_converter.rs use common::proto::multieko2::table_structure::TableStructureResponse; -use prost_types::{value::Kind, NullValue, Value}; // Removed unused anyhow +use prost_types::{value::Kind, NullValue, Value}; use std::collections::HashMap; pub fn convert_and_validate_data( @@ -19,7 +19,7 @@ pub fn convert_and_validate_data( let expected_type = type_map.get(key.as_str()).unwrap_or(&"TEXT"); let kind = if str_value.is_empty() { - // CHANGE THIS: Use the correct enum variant + // TODO: Use the correct enum variant Kind::NullValue(NullValue::NullValue.into()) } else { // Attempt to parse the string based on the expected type