aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
Diffstat (limited to 'src/features')
-rw-r--r--src/features/communityRecipes/store.ts2
-rw-r--r--src/features/todos/actions.ts2
-rw-r--r--src/features/workspaces/actions.ts3
3 files changed, 2 insertions, 5 deletions
diff --git a/src/features/communityRecipes/store.ts b/src/features/communityRecipes/store.ts
index d3b3318fa..1c21908e2 100644
--- a/src/features/communityRecipes/store.ts
+++ b/src/features/communityRecipes/store.ts
@@ -37,5 +37,3 @@ export class CommunityRecipesStore extends FeatureStore {
37 ); 37 );
38 } 38 }
39} 39}
40
41export default CommunityRecipesStore;
diff --git a/src/features/todos/actions.ts b/src/features/todos/actions.ts
index 31b14d40b..5273cc858 100644
--- a/src/features/todos/actions.ts
+++ b/src/features/todos/actions.ts
@@ -44,5 +44,3 @@ export const todoActions = createActionsFromDefinitions<TodoActionsType>(
44 }, 44 },
45 PropTypes.checkPropTypes, 45 PropTypes.checkPropTypes,
46); 46);
47
48export default todoActions;
diff --git a/src/features/workspaces/actions.ts b/src/features/workspaces/actions.ts
index 5f3fefec4..cfe4f9e8e 100644
--- a/src/features/workspaces/actions.ts
+++ b/src/features/workspaces/actions.ts
@@ -3,7 +3,8 @@ import Workspace from './models/Workspace';
3import { createActionsFromDefinitions } from '../../actions/lib/actions'; 3import { createActionsFromDefinitions } from '../../actions/lib/actions';
4 4
5type WorkspaceArg = { workspace: Workspace }; 5type WorkspaceArg = { workspace: Workspace };
6export interface WorkspaceActions { 6
7interface WorkspaceActions {
7 openWorkspaceSettings: () => void; 8 openWorkspaceSettings: () => void;
8 toggleWorkspaceDrawer: () => void; 9 toggleWorkspaceDrawer: () => void;
9 deactivate: () => void; 10 deactivate: () => void;