From 68d8d67f9519b9f2099a2a249b1f13eeb235b3db Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Thu, 23 Apr 2026 15:09:00 +0200 Subject: [PATCH] UI: Change status of restored rows from 'pending' to 'synced' to remove distracting yellow highlights. Now previously saved work appears with a normal background while still being correctly loaded from the database. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 6e2f0e2..d635a2f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -174,7 +174,7 @@ export default function App() { finalRow[idx] = synced.data[idx]; } }); - setRowStatuses(prev => ({ ...prev, [articleNo]: 'pending' })); + setRowStatuses(prev => ({ ...prev, [articleNo]: 'synced' })); } // Otherwise use Dropbox values (don't merge, just process formatting)