Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit b6ce377

Browse files
Consistency.
1 parent 6ef3a68 commit b6ce377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

es6-babel-react-flux-karma/src/stores/GreetingStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class GreeterStore extends FluxStore<GreetingState> {
77
constructor(dispatcher: Flux.Dispatcher<Event>) {
88
const onDispatch = (action: Event) => {
99
if (action instanceof AddGreetingEvent) {
10-
const { payload } = action;
10+
const {payload} = action;
1111
this.state.newGreeting = '';
1212
this.state.greetings = this.state.greetings.concat(payload);
1313
this.emitChange();

0 commit comments

Comments
 (0)