remove all unused (knip pass)

This commit is contained in:
bymyself
2025-09-04 18:02:13 -07:00
parent 73a1feea99
commit b0f2a1d00a
8 changed files with 8 additions and 270 deletions

View File

@@ -71,10 +71,3 @@ export const widgetTypeToComponent: Record<string, Component> = {
[WidgetType.TREESELECT]: WidgetTreeSelect,
[WidgetType.MARKDOWN]: WidgetMarkdown
}
/**
* Helper function to get widget component by type
*/
export function getWidgetComponent(type: string): Component | undefined {
return widgetTypeToComponent[type]
}