From 892e060bc11e737aa788c4c247e34270cb18ffd7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 31 Jan 2026 18:56:03 +0100 Subject: [PATCH] Add no matching texts message for search results --- src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 1093978..74c9186 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1311,6 +1311,8 @@ export default function App() { > {loadingTexts || loadingFolders ? (
Loading…
+ ) : hasSearch && texts.length === 0 ? ( +
No matching texts.
) : texts.length === 0 && folders.length === 0 ? (
No texts yet.
) : (