implement code editor as a component

add notif on status 'Installing' click
modify AppInstallModal
This commit is contained in:
Davor 2022-07-28 23:48:55 +02:00
parent 5b728d35d7
commit 3edc690075
13 changed files with 152 additions and 76 deletions

View file

@ -31,6 +31,11 @@ const appsReducer = (state: any = initialUsersState, action: any) => {
...state,
currentApp: action.payload,
};
case AppActionTypes.CLEAR_APP:
return {
...state,
currentApp: {},
};
default:
return state;
}