web/flows: remove node directly instead of using removeChild()
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
ef564e5f1a
commit
bd283c506d
|
@ -150,7 +150,7 @@ export class IdentificationStage extends BaseStage<
|
||||||
|
|
||||||
cleanup(): void {
|
cleanup(): void {
|
||||||
if (this.form) {
|
if (this.form) {
|
||||||
document.documentElement.removeChild(this.form);
|
this.form.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue