From e6b1c9203b5ff9dac951e3a1b49f248fef1cb2a6 Mon Sep 17 00:00:00 2001 From: m Date: Mon, 13 Jul 2026 13:12:20 +0200 Subject: [PATCH] fix regroup items by tags --- mobile/app/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/app/index.tsx b/mobile/app/index.tsx index 9a3b41d..52a8dfe 100644 --- a/mobile/app/index.tsx +++ b/mobile/app/index.tsx @@ -55,7 +55,7 @@ function groupByTag(files: FileItem[]): GroupedFiles { groups['Sans tag'].push(file); } else { for (const tag of tags) { - const name = typeof tag === 'string' ? tag : tag.name; + const name = typeof tag === 'string' ? tag : tag.tag_name; if (!name) continue; if (!groups[name]) groups[name] = []; groups[name].push(file);