File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
10
10
} from '../api/harvester' ;
11
11
import { showErrorPanel } from './general' ;
12
12
13
- export function setContents ( contents ) {
13
+ function setContents ( contents ) {
14
14
return {
15
15
type : 'SET_HARVESTER_CONTENTS' ,
16
16
data : { harvesterContents : contents } ,
@@ -25,7 +25,7 @@ export function updateHarvesterContents(data) {
25
25
return { type : 'UPDATE_HARVESTER_CONTENTS' , data } ;
26
26
}
27
27
28
- export function setHarvesterCommandResponse ( response ) {
28
+ function setHarvesterCommandResponse ( response ) {
29
29
return { type : 'SET_HARVESTER_RESPONSE' , response } ;
30
30
}
31
31
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import { fetchAvailableWorkflows } from '../api/workflow';
14
14
import { fetchGetAllActions } from './beamlineActions' ;
15
15
import { applicationFetched , showErrorPanel } from './general' ;
16
16
17
- export function setLoginInfo ( loginInfo ) {
17
+ function setLoginInfo ( loginInfo ) {
18
18
return {
19
19
type : 'SET_LOGIN_INFO' ,
20
20
loginInfo,
@@ -33,7 +33,7 @@ export function hideProposalsForm() {
33
33
} ;
34
34
}
35
35
36
- export function setInitialState ( data ) {
36
+ function setInitialState ( data ) {
37
37
return { type : 'SET_INITIAL_STATE' , data } ;
38
38
}
39
39
You can’t perform that action at this time.
0 commit comments