Skip to content

Commit 05216ba

Browse files
committed
fix(ReduceStore): make state public
1 parent 8e62868 commit 05216ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ReduceStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const assert = require("assert");
44
import { Store, Payload } from "almin";
55
import { ReduceState } from "./ReduceState";
66
export class ReduceStore extends Store {
7-
protected state: ReduceState | null;
7+
state: ReduceState | null;
88

99
constructor() {
1010
super();

0 commit comments

Comments
 (0)