Skip to content

Commit 8ccdafb

Browse files
walesch-yanmarcus-oscarsson
authored andcommitted
remove unecessary exports for harvester and login actions
1 parent ede9d34 commit 8ccdafb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ui/src/actions/harvester.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from '../api/harvester';
1111
import { showErrorPanel } from './general';
1212

13-
export function setContents(contents) {
13+
function setContents(contents) {
1414
return {
1515
type: 'SET_HARVESTER_CONTENTS',
1616
data: { harvesterContents: contents },
@@ -25,7 +25,7 @@ export function updateHarvesterContents(data) {
2525
return { type: 'UPDATE_HARVESTER_CONTENTS', data };
2626
}
2727

28-
export function setHarvesterCommandResponse(response) {
28+
function setHarvesterCommandResponse(response) {
2929
return { type: 'SET_HARVESTER_RESPONSE', response };
3030
}
3131

ui/src/actions/login.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { fetchAvailableWorkflows } from '../api/workflow';
1414
import { fetchGetAllActions } from './beamlineActions';
1515
import { applicationFetched, showErrorPanel } from './general';
1616

17-
export function setLoginInfo(loginInfo) {
17+
function setLoginInfo(loginInfo) {
1818
return {
1919
type: 'SET_LOGIN_INFO',
2020
loginInfo,
@@ -33,7 +33,7 @@ export function hideProposalsForm() {
3333
};
3434
}
3535

36-
export function setInitialState(data) {
36+
function setInitialState(data) {
3737
return { type: 'SET_INITIAL_STATE', data };
3838
}
3939

0 commit comments

Comments
 (0)