File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,9 @@ const toRegistryPublisher = (
8080 * Convert from node pack in Algolia format to Comfy Registry format
8181 */
8282const toRegistryPack = memoize (
83- ( algoliaNode : AlgoliaNodePack ) : RegistryNodePack => {
83+ (
84+ algoliaNode : AlgoliaNodePack
85+ ) : RegistryNodePack & { comfy_nodes : string [ ] } => {
8486 return {
8587 id : algoliaNode . id ?? algoliaNode . objectID ,
8688 name : algoliaNode . name ,
@@ -103,7 +105,6 @@ const toRegistryPack = memoize(
103105 algoliaNode . supported_comfyui_frontend_version ,
104106 supported_accelerators : algoliaNode . supported_accelerators ,
105107 banner_url : algoliaNode . banner_url ,
106- // @ts -expect-error comfy_nodes also not in node info
107108 comfy_nodes : algoliaNode . comfy_nodes
108109 }
109110 } ,
You can’t perform that action at this time.
0 commit comments