diff --git a/docs/pages/resources/changelog.md b/docs/pages/resources/changelog.md
index 520667fe38..b50f906ed2 100644
--- a/docs/pages/resources/changelog.md
+++ b/docs/pages/resources/changelog.md
@@ -17,6 +17,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
- Added support for Enter to `` to align with ARIA APG's [window splitter pattern](https://www.w3.org/WAI/ARIA/apg/patterns/windowsplitter/) [#2234]
- Fixed a bug in `` that caused the navigation icons to be reversed
- Fixed a bug in `` that prevented label changes in `` from updating the controller [#1971]
+- Fixed a bug in `` that caused a console warning in Firefox when typing [#2107]
- Improved performance of `` by skipping positioning logic when tooltip isn't shown [#2064]
## 2.18.0
diff --git a/src/components/tab/tab.styles.ts b/src/components/tab/tab.styles.ts
index 0473b3c6d1..fdf6ec284b 100644
--- a/src/components/tab/tab.styles.ts
+++ b/src/components/tab/tab.styles.ts
@@ -31,11 +31,8 @@ export default css`
outline: transparent;
}
- :host(:focus-visible):not([disabled]) {
- color: var(--sl-color-primary-600);
- }
-
:host(:focus-visible) {
+ color: var(--sl-color-primary-600);
outline: var(--sl-focus-ring);
outline-offset: calc(-1 * var(--sl-focus-ring-width) - var(--sl-focus-ring-offset));
}
diff --git a/src/components/textarea/textarea.component.ts b/src/components/textarea/textarea.component.ts
index 51fbfdfbc7..e76dfbf18c 100644
--- a/src/components/textarea/textarea.component.ts
+++ b/src/components/textarea/textarea.component.ts
@@ -202,7 +202,7 @@ export default class SlTextarea extends ShoelaceElement implements ShoelaceFormC
this.input.style.height = 'auto';
this.input.style.height = `${this.input.scrollHeight}px`;
} else {
- (this.input.style.height as string | undefined) = undefined;
+ this.input.style.height = '';
}
}