diff --git a/crates/api_common/src/reports/comment.rs b/crates/api_common/src/reports/comment.rs index 6e0426752..d1a51a6a8 100644 --- a/crates/api_common/src/reports/comment.rs +++ b/crates/api_common/src/reports/comment.rs @@ -1,7 +1,6 @@ -use lemmy_db_schema::newtypes::{CommentId, CommentReportId, CommunityId}; +use lemmy_db_schema::newtypes::{CommentId, CommentReportId}; use lemmy_db_views::structs::CommentReportView; use serde::{Deserialize, Serialize}; -use serde_with::skip_serializing_none; #[cfg(feature = "full")] use ts_rs::TS; diff --git a/crates/api_common/src/reports/post.rs b/crates/api_common/src/reports/post.rs index 8a935babf..a4d20d575 100644 --- a/crates/api_common/src/reports/post.rs +++ b/crates/api_common/src/reports/post.rs @@ -1,7 +1,6 @@ -use lemmy_db_schema::newtypes::{CommunityId, PostId, PostReportId}; +use lemmy_db_schema::newtypes::{PostId, PostReportId}; use lemmy_db_views::structs::PostReportView; use serde::{Deserialize, Serialize}; -use serde_with::skip_serializing_none; #[cfg(feature = "full")] use ts_rs::TS; diff --git a/crates/api_common/src/reports/private_message.rs b/crates/api_common/src/reports/private_message.rs index 6d1467b63..5fd401564 100644 --- a/crates/api_common/src/reports/private_message.rs +++ b/crates/api_common/src/reports/private_message.rs @@ -1,7 +1,6 @@ use lemmy_db_schema::newtypes::{PrivateMessageId, PrivateMessageReportId}; use lemmy_db_views::structs::PrivateMessageReportView; use serde::{Deserialize, Serialize}; -use serde_with::skip_serializing_none; #[cfg(feature = "full")] use ts_rs::TS;