Skip to content

Commit

Permalink
Merge branch 'main' into dbajpeyi/fix/supported-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dbajpeyi committed Nov 5, 2024
2 parents 71aed62 + 3790936 commit 7d4a3af
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 7 deletions.
12 changes: 6 additions & 6 deletions injected/src/features/autofill-password-import.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,14 +273,14 @@ export default class AutofillPasswordImport extends ContentFeature {
} else {
const domLoaded = new Promise((resolve) => {
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", resolve);
document.addEventListener("DOMContentLoaded", resolve);
} else {
// @ts-expect-error
resolve()
// @ts-expect-error - caller doesn't expect a value here
resolve()
}
})
await domLoaded
this.animateElement(element, style)
})
await domLoaded
this.animateElement(element, style)
}
if (shouldWatchForRemoval) {
// Sometimes navigation events are not triggered, then we need to watch for removal
Expand Down
97 changes: 97 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion special-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"preact": "^10.24.3",
"classnames": "^2.5.1",
"@formkit/auto-animate": "^0.8.2",
"@rive-app/canvas-single": "^2.23.3"
"@rive-app/canvas-single": "^2.23.3",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3"
}
}

0 comments on commit 7d4a3af

Please sign in to comment.