remove error context

This commit is contained in:
phiresky 2024-12-13 14:11:19 +01:00
parent 2de5a4968b
commit 0cb0bb7c5a

View file

@ -48,8 +48,7 @@ impl PostTagInsertForm {
insert_into(post_tag::table)
.values(tags)
.execute(conn)
.await
.context("Failed to insert post community tag associations")?;
.await?;
Ok(())
}
}