Remove unecessary clone

This commit is contained in:
Freek van Zee 2024-04-08 21:39:17 +02:00
parent 7ce89fb5e6
commit 8c7b3001ae

View file

@ -33,7 +33,7 @@ pub async fn create_tagline(
let tagline_form = TaglineInsertForm {
local_site_id: local_site.id,
content: content.clone(),
content,
};
let tagline = Tagline::create(&mut context.pool(), &tagline_form).await?;