Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations. pdsmoover.com
pds atproto migrations moo cow

show 2fa input again

+2 -2
+1 -1
justfile
··· 27 docker buildx build \ 28 --platform linux/arm64,linux/amd64 \ 29 --tag fatfingers23/moover_ui:latest \ 30 - --tag fatfingers23/moover_ui:0.0.9 \ 31 --file Dockerfiles/web-ui.Dockerfile \ 32 --builder desktop-linux \ 33 --push .
··· 27 docker buildx build \ 28 --platform linux/arm64,linux/amd64 \ 29 --tag fatfingers23/moover_ui:latest \ 30 + --tag fatfingers23/moover_ui:0.0.10 \ 31 --file Dockerfiles/web-ui.Dockerfile \ 32 --builder desktop-linux \ 33 --push .
+1 -1
web-ui/src/routes/moover/[[pds]]/+page.svelte
··· 181 //@ts-expect-error: JS being js. doesn't like not having the type' 182 if (error.error === 'AuthFactorTokenRequired') { 183 showTwoFactorCodeInput = true; 184 } 185 //@ts-expect-error: JS being js. doesn't like not having the type' 186 errorMessage = error.message; 187 - // migrationInProgress = false; 188 } 189 } 190
··· 181 //@ts-expect-error: JS being js. doesn't like not having the type' 182 if (error.error === 'AuthFactorTokenRequired') { 183 showTwoFactorCodeInput = true; 184 + migrationInProgress = false; 185 } 186 //@ts-expect-error: JS being js. doesn't like not having the type' 187 errorMessage = error.message; 188 } 189 } 190