Skip to content

Commit

Permalink
minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
The-DevBlog committed Mar 6, 2024
1 parent f96f303 commit 1836752
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion devblog/devblog/client/src/components/items/mod.rs

This file was deleted.

2 changes: 1 addition & 1 deletion devblog/devblog/client/src/components/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ pub mod comment_add;
pub mod comment_delete;
pub mod comment_edit;
pub mod footer;
pub mod items;
pub mod markdown;
pub mod navbar;
pub mod notifications;
pub mod pager;
pub mod post;
pub mod post_delete;
pub mod post_edit;
pub mod text_input;
pub mod vote;
2 changes: 1 addition & 1 deletion devblog/devblog/client/src/pages/home.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::{
components::{items::text_input::TextInput, post::Post},
components::{post::Post, text_input::TextInput},
helpers::{self, CustomCallback},
router::Route,
store::Store,
Expand Down
4 changes: 2 additions & 2 deletions devblog/devblog/client/src/pages/sign_in.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
components::items::text_input::TextInput, helpers, router::Route, Api, IdentityError, Store,
User, UserField,
components::text_input::TextInput, helpers, router::Route, Api, IdentityError, Store, User,
UserField,
};
use gloo_net::http::{Headers, Method};
use std::ops::Deref;
Expand Down
4 changes: 2 additions & 2 deletions devblog/devblog/client/src/pages/sign_up.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
components::items::text_input::TextInput, helpers, router::Route, Api, IdentityError, Store,
User, UserField,
components::text_input::TextInput, helpers, router::Route, Api, IdentityError, Store, User,
UserField,
};
use gloo_net::http::{Headers, Method};
use std::ops::Deref;
Expand Down

0 comments on commit 1836752

Please sign in to comment.