From 21030f28eb0c4a1c1bad586cbc79e687c576d469 Mon Sep 17 00:00:00 2001 From: Richard R Date: Thu, 16 Apr 2026 20:13:01 -0600 Subject: [PATCH] refactor: update document section title from 'Local Documents' to 'Your Documents' --- src/components/doclist/DocumentList.tsx | 2 +- tests/upload.spec.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/doclist/DocumentList.tsx b/src/components/doclist/DocumentList.tsx index 9ebd7bc..4d5e2f9 100644 --- a/src/components/doclist/DocumentList.tsx +++ b/src/components/doclist/DocumentList.tsx @@ -308,7 +308,7 @@ export function DocumentList() {
-

Local Documents

+

Your Documents

{ await clickDocumentLink(page, 'sample.pdf'); await expectViewerForFile(page, 'sample.pdf'); await page.goBack(); - await expect(page.getByText('Local Documents')).toBeVisible({ timeout: 10000 }); + await expect(page.getByText('Your Documents')).toBeVisible({ timeout: 10000 }); // EPUB navigation and viewer await clickDocumentLink(page, 'sample.epub'); await expectViewerForFile(page, 'sample.epub'); await page.goBack(); - await expect(page.getByText('Local Documents')).toBeVisible({ timeout: 10000 }); + await expect(page.getByText('Your Documents')).toBeVisible({ timeout: 10000 }); // TXT navigation and viewer (HTML viewer) await clickDocumentLink(page, 'sample.txt');