From c49e84efc6612ddc758818c2d24f627de850cb7a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 30 Aug 2025 19:21:26 +0300 Subject: [PATCH] refactor(react/collections): rename --- apps/client/src/widgets/collections/NoteList.tsx | 2 +- .../collections/legacy/{ListView.tsx => ListOrGridView.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename apps/client/src/widgets/collections/legacy/{ListView.tsx => ListOrGridView.tsx} (100%) diff --git a/apps/client/src/widgets/collections/NoteList.tsx b/apps/client/src/widgets/collections/NoteList.tsx index 173ec06be..9d9f772c4 100644 --- a/apps/client/src/widgets/collections/NoteList.tsx +++ b/apps/client/src/widgets/collections/NoteList.tsx @@ -2,7 +2,7 @@ import { allViewTypes, ViewModeProps, ViewTypeOptions } from "./interface"; import { useNoteContext, useNoteLabel, useTriliumEvent } from "../react/hooks"; import FNote from "../../entities/fnote"; import "./NoteList.css"; -import { ListView, GridView } from "./legacy/ListView"; +import { ListView, GridView } from "./legacy/ListOrGridView"; import { useEffect, useState } from "preact/hooks"; interface NoteListProps { diff --git a/apps/client/src/widgets/collections/legacy/ListView.tsx b/apps/client/src/widgets/collections/legacy/ListOrGridView.tsx similarity index 100% rename from apps/client/src/widgets/collections/legacy/ListView.tsx rename to apps/client/src/widgets/collections/legacy/ListOrGridView.tsx