Skip to content

Commit f9ab8e3

Browse files
committed
fix: clippy things
1 parent d78ef95 commit f9ab8e3

27 files changed

+27
-27
lines changed

src/app.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{component, tracing, view, IntoView};
1+
use leptos::{component, view, IntoView};
22
use leptos_meta::{provide_meta_context, Body, Html, Meta, Stylesheet, Title};
33
use leptos_router::{Router, Routes, StaticParamsMap, StaticRoute};
44

src/components/aprende/books.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::ButtonLink;
44

src/components/aprende/header.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33

44
#[component]

src/components/aprende/roadmap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::ButtonLink;
44

src/components/aprende/youtube.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::ButtonLink;
44

src/components/button_link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{Children, IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{Children, IntoView, component, view};
22
use std::collections::HashMap;
33

44
#[component]

src/components/cards/card_title.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn CardTitle(#[prop(into)] texts: &'static [&'static str]) -> impl IntoView {

src/components/cards/community_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::{
44
cards::card_title::CardTitle,

src/components/cards/contributor_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::icons::{GithubIcon, TwitterIcon, LocationIcon};
44

src/components/cards/project_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22
use std::collections::HashMap;
33

44
use crate::components::{

src/components/community_projects.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22
use leptos_router::A;
33

44
use crate::{components::{ProjectCard, NextIcon}, extras::COMUNITY_PROJECTS};

src/components/footer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn Footer() -> impl IntoView {

src/components/header.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, SignalUpdate, create_signal, island, tracing, view};
1+
use leptos::{IntoView, SignalUpdate, create_signal, island, view};
22

33
use crate::components::ButtonLink;
44

src/components/hero.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22
use crate::components::SloganButton;
33

44
#[component]

src/components/icons/discord_icon.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn DiscordIcon(

src/components/icons/github_icon.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn GithubIcon(

src/components/icons/location_icon.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn LocationIcon(

src/components/icons/next.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn NextIcon(

src/components/icons/telegram_icon.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn TelegramIcon(

src/components/icons/twitter_icon.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, IntoAttribute, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
#[component]
44
pub fn TwitterIcon(

src/components/other_communities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::{components::{CommunityCard, NextIcon}, extras::OTHER_COMUNITIES};
44

src/components/our_communities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::{
44
button_link::ButtonLink,

src/components/slogan_button.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, SignalUpdate, create_signal, island, tracing, view};
1+
use leptos::{IntoView, SignalUpdate, create_signal, island, view};
22

33
use rand::seq::SliceRandom;
44

src/pages/aprende.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::{Books, HeaderAprende, Roadmap, Youtube};
44

src/pages/communidad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::{CommunityProjects, OtherCommunities};
44

src/pages/contributors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use futures::future::join_all;
2-
use leptos::{error::Result, Fragment, IntoView, SignalGet, create_local_resource, island, serde, tracing, view};
2+
use leptos::{error::Result, Fragment, IntoView, SignalGet, create_local_resource, island, serde, view};
33
use serde::{Deserialize, Serialize};
44

55
use crate::components::ContributorCard;

src/pages/index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use leptos::{IntoView, component, tracing, view};
1+
use leptos::{IntoView, component, view};
22

33
use crate::components::{CommunityProjects, Hero, OtherCommunities, OurCommunities};
44

0 commit comments

Comments
 (0)