fix(editor): remove duplicate #include "ui/ui.h"

editor.c included ui/ui.h twice in a row (lines 25 and 27). Harmless
due to the header guard but pure noise.
This commit is contained in:
2026-05-24 11:13:39 +03:00
parent 1dd22af294
commit 36f4377b4c

View File

@@ -24,7 +24,6 @@
#include "ncurses.h"
#include "ui/ui.h"
#include "xmpp/xmpp.h"
#include "ui/ui.h"
typedef struct EditorContext
{