client/note color picker menu item: fix data type

This commit is contained in:
Adorian Doran
2025-11-18 01:10:10 +02:00
parent 8729fe48c3
commit e239bca0f2

View File

@@ -17,7 +17,7 @@ export interface ContextMenuOptions<T> {
export interface CustomMenuItem {
kind: "custom",
componentFn: () => JSX.Element;
componentFn: () => JSX.Element | null;
}
export interface MenuSeparatorItem {