Skip to content

Commit d68fe83

Browse files
committed
fix broken path
1 parent b62b742 commit d68fe83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/modules/tutorial/actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
"use strict";
2-
var selectors_1 = require('../../selectors');
2+
var actions_1 = require('../../actions');
33
var types_1 = require('./types');
44
function tutorialSet(_a) {
55
var name = _a.name, version = _a.version;
66
return function (dispatch, getState) {
77
var dir = getState().dir;
88
dispatch({ type: types_1.TUTORIAL_SET, payload: { name: name, dir: dir, version: version } });
9-
dispatch(selectors_1.routeSet('progress'));
9+
dispatch(actions_1.routeSet('progress'));
1010
};
1111
}
1212
exports.tutorialSet = tutorialSet;

src/modules/tutorial/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {routeSet} from '../../selectors';
1+
import {routeSet} from '../../actions';
22
import {TUTORIAL_SET} from './types';
33

44
export function tutorialSet({name, version}): ReduxThunk.ThunkInterface {

0 commit comments

Comments
 (0)