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.
2 parents 971eff0 + 4395539 commit 425f610Copy full SHA for 425f610
apps/remix-ide/src/app/ui/landing-page/landing-page.js
@@ -329,9 +329,7 @@ export class LandingPage extends ViewPlugin {
329
const fileProviders = globalRegistry.get('fileproviders').api
330
const zip = new JSZip()
331
await fileProviders.browser.copyFolderToJson('/', ({ path, content }) => {
332
- zip.file(path, content)
333
- }, ({ path, content }) => {
334
- zip.folder(path, content)
+ zip.file(`remixbackup${path}`, content)
335
})
336
zip.generateAsync({ type: 'blob' }).then(function (blob) {
337
saveAs(blob, 'remixdbackup.zip')
0 commit comments