Skip to content

Commit

Permalink
fix: AppRuntime.default is now marked static readonly.
Browse files Browse the repository at this point in the history
  • Loading branch information
eser committed Jul 14, 2024
1 parent 9969c44 commit 740eabf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/app-runtime/app-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const createAppRuntimeState = (): AppRuntimeState => {
};

export class AppRuntime<S extends AppRuntimeState = AppRuntimeState> {
static default = Symbol("default");
static readonly default = Symbol("default");
readonly state: S;

constructor(state?: S) {
Expand Down

0 comments on commit 740eabf

Please sign in to comment.