//TODO: remove this margin when landing page done
- {"Agents Page"}
+
//TODO: remove this margin when landing page done
+
+ {"Nuestros Agentes"}
+
+
+ {(*agents).iter().map(|agent| html!{
}).collect::()}
+
>
diff --git a/src/pages/details.rs b/src/pages/details.rs
index 4e38a6b..2cafd3e 100644
--- a/src/pages/details.rs
+++ b/src/pages/details.rs
@@ -1,5 +1,5 @@
use jl_types::{dto::listing::Listing, domain::{unit_type::UnitType, unit::Unit}};
-use log::{error, info};
+use log::{error};
use thousands::Separable;
use uuid::Uuid;
use yew::prelude::*;
@@ -22,7 +22,6 @@ pub fn details_page(props: &DetailsPageProps) -> Html {
Ok(listing) => {
listing_handle.set(listing);
finished_loading.set(true);
- info!("Finshed loading listing");
},
Err(error) => {
error!("Error fetching listing. Error: {:?}", error);