Skip to content

Commit a1e16a2

Browse files
committed
More merge conflicts resolved
1 parent ded1326 commit a1e16a2

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

src/actions/components.ts

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
import {
2-
<<<<<<< HEAD
32
ComponentInt, ComponentsInt, PropInt, ChildInt, Action, ApplicationStateInt, LoadInitData, AddComponent
4-
=======
5-
ComponentInt,
6-
ComponentsInt,
7-
PropInt,
8-
ChildInt,
9-
Action,
10-
ApplicationStateInt
11-
>>>>>>> f83af9065420b5f7bd3ed2f414d8f7aa2045dce7
123
} from '../utils/Interfaces.ts';
134

145
import {
@@ -49,14 +40,8 @@ export const changeImagePath = (imageSource: string) => ({
4940
payload: { imageSource }
5041
});
5142

52-
<<<<<<< HEAD
53-
export const loadInitData = () => (dispatch: any) => {
54-
loadState().then((data: any) => {
55-
=======
5643
export const loadInitData = () => (dispatch: (arg: Action) => void) => {
57-
loadState().then((data: ApplicationStateInt) => {
58-
console.log('data.workspace', data.workspace);
59-
>>>>>>> f83af9065420b5f7bd3ed2f414d8f7aa2045dce7
44+
loadState().then((data: any) => {
6045
dispatch({
6146
type: LOAD_INIT_DATA,
6247
payload: {

0 commit comments

Comments
 (0)