diff --git a/src/components/CommandPalette.jsx b/src/components/CommandPalette.jsx
index f48a9fb..63b6ac7 100644
--- a/src/components/CommandPalette.jsx
+++ b/src/components/CommandPalette.jsx
@@ -7,6 +7,7 @@ import {
SWITCH_FILE_EVENT
} from '../commandPaletteService';
import { FileIcon } from './FileIcon';
+import { UP_KEY, DOWN_KEY, ENTER_KEY } from '../keyboardKeys';
function getFolder(filePath) {
const split = filePath.split('/');
@@ -16,14 +17,19 @@ function getFolder(filePath) {
}
return '';
}
-function Row({ item, onClick }) {
+function Row({ item, onClick, isSelected }) {
return (
-