We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec81a6d commit 1d5747dCopy full SHA for 1d5747d
src/renderer/context/App.tsx
@@ -216,7 +216,10 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
216
settings.fetchType === FetchType.INACTIVITY ? settings.fetchInterval : null,
217
);
218
219
- // biome-ignore lint/correctness/useExhaustiveDependencies: Refresh account details on startup
+ /**
220
+ * On startup, check if auth tokens need encrypting and refresh all account details
221
+ */
222
+ // biome-ignore lint/correctness/useExhaustiveDependencies: Run once on startup
223
useEffect(() => {
224
void (async () => {
225
await migrateAuthTokens();
0 commit comments