Skip to content

Commit

Permalink
fix(build): Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip committed Sep 28, 2023
1 parent 91e1b19 commit 517a16d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/components/Form/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './schema.service.ts';
export * from './schema.service';
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
BreadthFirstLayout,
ColaGroupsLayout,
ColaLayout,
ComponentFactory,
ConcentricLayout,
DagreLayout,
DefaultEdge,
Expand Down Expand Up @@ -51,7 +52,7 @@ export class CanvasService {
return newController;
}

static baselineComponentFactory(kind: ModelKind, type: string) {
static baselineComponentFactory(kind: ModelKind, type: string): ReturnType<ComponentFactory> {
switch (type) {
case 'group':
return DefaultGroup;
Expand Down

0 comments on commit 517a16d

Please sign in to comment.