From 485e8b4ed86123555d9312f83947159281dd7b64 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 1 Feb 2026 04:18:19 +0100 Subject: [PATCH] Reorder imports in App.tsx for consistency --- src/App.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 17bdb6f..f68598c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -15,8 +15,7 @@ import { lineNumbers, highlightActiveLineGutter } from "@codemirror/view"; -import { history, historyKeymap } from "@codemirror/history"; -import { defaultKeymap } from "@codemirror/commands"; +import { defaultKeymap, history, historyKeymap } from "@codemirror/commands"; import folderIcon from "../src-tauri/icons/folder.png"; import folderIconBright from "../src-tauri/icons/folder_b.png"; import historyIcon from "../src-tauri/icons/history.png";