Skip to content

Commit 43f0bb9

Browse files
committed
fix: remove unnecesary println
1 parent 250d4f0 commit 43f0bb9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/pages/contributors.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};
66

77
use crate::components::ContributorCard;
88

9-
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
9+
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
1010
pub struct Contributor {
1111
login: String,
1212
avatar_url: String,
@@ -54,7 +54,6 @@ async fn fetch_contributor_info(username: String) -> Result<Contributor> {
5454
pub fn Contributors() -> impl IntoView {
5555
let contributors_results = create_local_resource(move || (), |()| fetch_contributors());
5656
let contributorMapper = |item: &Contributor| {
57-
println!("Contributor: {item:?}");
5857
view! {
5958
<ContributorCard
6059
name=item.login.clone()
@@ -92,4 +91,3 @@ pub fn Contributors() -> impl IntoView {
9291
</section>
9392
}
9493
}
95-

0 commit comments

Comments
 (0)