chore: remove legacy profile migration functionality

This commit is contained in:
zhom
2025-08-05 06:08:27 +04:00
parent 8f1b84f615
commit 669611ec68
4 changed files with 0 additions and 274 deletions
-11
View File
@@ -202,17 +202,6 @@ export default function Home() {
);
setProfiles(profileList);
// TODO: remove after a few version bumps, needed to properly display migrated profiles
setTimeout(async () => {
for (let i = 0; i < 10; i++) {
const profiles = await invoke<BrowserProfile[]>(
"list_browser_profiles",
);
setProfiles(profiles);
}
await sleep(500);
}, 0);
// Check for updates after loading profiles
await checkForUpdates();
await checkMissingBinaries();