Skip to content

Commit b8113dc

Browse files
committed
fix
1 parent 2c011d8 commit b8113dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ export class Kernel {
686686
}
687687

688688
public static exportRegistry(entrypointRelpath: string): string {
689-
return appRegistry.exportJSON(entrypointRelpath);
689+
return appRegistry.exportJSON();
690690
}
691691

692692
static Kernel = this;
@@ -713,7 +713,7 @@ export class Kernel {
713713
}
714714
Kernel.Apps = Apps;
715715
Kernel.Browser = Browser;
716-
Kernel.exportRegistry = (entrypointRelpath: string) => appRegistry.exportJSON(entrypointRelpath);
716+
Kernel.exportRegistry = () => appRegistry.exportJSON();
717717
export declare namespace Kernel {
718718
export type RequestOptions = Opts.RequestOptions;
719719

0 commit comments

Comments
 (0)