Skip to content

Commit d1e940d

Browse files
author
Daniel Morse
committed
fix: remove unneeded rendered() method
1 parent 83729e3 commit d1e940d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

packages/components/bolt-blockquote/src/blockquote.js

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,6 @@ class BoltBlockquote extends withLitHtml() {
7373
}
7474
}
7575

76-
rendered() {
77-
super.rendered(); // ensure any events emitted by the Bolt Base class fire as expected
78-
79-
// re-render if Shadow DOM is supported and enabled; temp workaround to dealing w/ components already rendered, but without slot support
80-
if (hasNativeShadowDomSupport && this.useShadow) {
81-
this.observer = watchForComponentMutations(this);
82-
83-
this.observer.observe(this, {
84-
attributes: false,
85-
childList: true,
86-
characterData: false,
87-
});
88-
}
89-
}
90-
9176
disconnecting() {
9277
// this.removeEventListener('click', this.clickHandler);
9378

0 commit comments

Comments
 (0)