diff --git a/src/auro-combobox.js b/src/auro-combobox.js
index 0cd0297..8879cc8 100644
--- a/src/auro-combobox.js
+++ b/src/auro-combobox.js
@@ -694,7 +694,7 @@ export class AuroCombobox extends LitElement {
* @returns {void}
*/
observeSlotChanges() {
- const [slotContent] = this.shadowRoot.querySelector("#defaultSlot").assignedElements();
+ const [slotContent] = this.shadowRoot.querySelector(".menuWrapper slot").assignedElements();
if (slotContent) {
this.observer.observe(slotContent, {
@@ -740,7 +740,7 @@ export class AuroCombobox extends LitElement {