diff --git a/src/client/src/components/ActionPalette.ts b/src/client/src/components/ActionPalette.ts
index 72c6627..623f8b2 100644
--- a/src/client/src/components/ActionPalette.ts
+++ b/src/client/src/components/ActionPalette.ts
@@ -2,6 +2,7 @@ import { LitElement, html, type PropertyValues } from "lit";
import { customElement, property, query, state } from "lit/decorators.js";
import type { AppAction } from "../actions";
import { formatShortcut } from "../keyboardShortcuts";
+import { scrollWhenSelected } from "./scrollWhenSelected";
import { actionPaletteStyles } from "./shared";
@customElement("action-palette")
@@ -33,7 +34,7 @@ export class ActionPalette extends LitElement {
${actions.length === 0 ? html`
No actions found.
` : actions.map((action, index) => html`
-