feat: adding sources migration

This commit is contained in:
Chubby Granny Chaser
2025-10-26 23:22:20 +00:00
parent 7c272aeed8
commit 87a57f7a37
7 changed files with 43 additions and 12 deletions

View File

@@ -38,8 +38,6 @@ export function GameCard({ game, ...props }: GameCardProps) {
const { numberFormatter } = useFormat();
console.log("game", game);
return (
<button
{...props}

View File

@@ -103,6 +103,8 @@ export function SettingsDownloadSources() {
try {
const sources = await window.electron.syncDownloadSources();
setDownloadSources(sources);
showSuccessToast(t("download_sources_synced_successfully"));
} finally {
setIsSyncingDownloadSources(false);
}