From 635e99c183365ef8f58624c843c36450428e47ff Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Tue, 18 Nov 2025 17:09:10 +0530 Subject: [PATCH] cleanup --- src/blog/types/props.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blog/types/props.ts b/src/blog/types/props.ts index 9e90fa6..365394d 100644 --- a/src/blog/types/props.ts +++ b/src/blog/types/props.ts @@ -9,7 +9,7 @@ export interface LatestProps { export interface ArticleViewProps { article: ArticleModel; onBack: () => void; - open_editor?: () => void; // optional because home → article must still work + open_editor: () => void; }