Skip to content

Commit

Permalink
ui box - div replaced by main (#2114)
Browse files Browse the repository at this point in the history
Co-authored-by: Piotr Wysocki <piotr.wysocki@fenergo.com>
Co-authored-by: Steve Hobbs <steve.hobbs@hey.com>
  • Loading branch information
3 people committed Apr 21, 2022
1 parent c8e32a3 commit 9361cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/box.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class ContainerManager {
let container = window.document.getElementById(id);

if (!container && shouldAppend) {
container = window.document.createElement('div');
container = window.document.createElement('main');
container.id = id;
container.className = 'auth0-lock-container';
window.document.body.appendChild(container);
Expand Down

0 comments on commit 9361cac

Please sign in to comment.