diff --git a/src/components/WishImportModal.svelte b/src/components/WishImportModal.svelte index 9d981164..5ae1977f 100644 --- a/src/components/WishImportModal.svelte +++ b/src/components/WishImportModal.svelte @@ -103,7 +103,7 @@ const localData = await readSave(`${prefix}${path}`); if (localData !== null) { - currentUID = localData; + currentUID = localData.toString(); } } @@ -243,7 +243,7 @@ throw 'account error'; } - currentUID = row.uid; + currentUID = row.uid.toString(); if (dayjs(time).isSameOrBefore(newestPullTime)) { return;