diff --git a/frontend/src/components/torrent/table.rs b/frontend/src/components/torrent/table.rs
index 1f031aa..fbe9358 100644
--- a/frontend/src/components/torrent/table.rs
+++ b/frontend/src/components/torrent/table.rs
@@ -368,7 +368,6 @@ pub fn TorrentTable() -> impl IntoView {
{
@@ -383,20 +382,21 @@ pub fn TorrentTable() -> impl IntoView {
(SortColumn::AddedDate, "Date"),
];
- columns.into_iter().map(|(col, label)| {
- let is_active = move || sort_col.get() == col;
- let current_dir = move || sort_dir.get();
+ columns.into_iter().map(|(col, label)| {
+ let is_active = move || sort_col.get() == col;
+ let current_dir = move || sort_dir.get();
- view! {
- -
-