diff --git a/src/components/journal/JournalInput.tsx b/src/components/journal/JournalInput.tsx
index f945796..de9622f 100644
--- a/src/components/journal/JournalInput.tsx
+++ b/src/components/journal/JournalInput.tsx
@@ -20,12 +20,7 @@ import {
Switch,
Match,
} from "solid-js";
-import {
- sendMessage,
- revertLatest,
- canRevert,
- useJournalStream,
-} from "../stores/journalStream";
+import { sendMessage, useJournalStream } from "../stores/journalStream";
import {
useJournalCompletions,
ensureCompletions,
@@ -123,10 +118,7 @@ export const JournalInput: Component = () => {
textareaRef?.focus();
}
- function handleRevert() {
- revertLatest();
- }
-
+ // ---- Completions ----
// ---- Scroll selected completion into view ----
createEffect(() => {
@@ -313,8 +305,6 @@ export const JournalInput: Component = () => {
onCleanup(() => document.removeEventListener("mousedown", handler));
});
- const showRevert = () => canRevert() && stream.myName === "gm";
-
// Completions placeholder — shown in the dropdown area when no matches
function renderCompletionsDropdown() {
const comps = currentCompletions();
@@ -414,15 +404,6 @@ export const JournalInput: Component = () => {
{error()}
-
-
-