diff --git a/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx b/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx
index 850aa3fba..fc1b45692 100644
--- a/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx
+++ b/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx
@@ -1,16 +1,18 @@
-import { useEffect, useRef, useState } from "preact/hooks";
-import FNote from "../../../entities/fnote";
-import Icon from "../../react/Icon";
-import { ViewModeProps } from "../interface";
-import { useImperativeSearchHighlighlighting, useNoteLabel } from "../../react/hooks";
-import NoteLink from "../../react/NoteLink";
import "./ListOrGridView.css";
-import content_renderer from "../../../services/content_renderer";
-import { Pager, usePagination } from "../Pagination";
-import tree from "../../../services/tree";
-import link from "../../../services/link";
-import { t } from "../../../services/i18n";
+
+import { useEffect, useRef, useState } from "preact/hooks";
+
+import FNote from "../../../entities/fnote";
import attribute_renderer from "../../../services/attribute_renderer";
+import content_renderer from "../../../services/content_renderer";
+import { t } from "../../../services/i18n";
+import link from "../../../services/link";
+import tree from "../../../services/tree";
+import { useImperativeSearchHighlighlighting, useNoteLabel } from "../../react/hooks";
+import Icon from "../../react/Icon";
+import NoteLink from "../../react/NoteLink";
+import { ViewModeProps } from "../interface";
+import { Pager, usePagination } from "../Pagination";
import { filterChildNotes, useFilteredNoteIds } from "./utils";
export function ListView({ note, noteIds: unfilteredNoteIds, highlightedTokens }: ViewModeProps<{}>) {
@@ -91,7 +93,7 @@ function ListNoteCard({ note, parentNote, highlightedTokens, currentLevel, expan