1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-07 03:35:18 +02:00

Multiple changes to App related components. Created form to add new Apps, outsourced AppGrid component

This commit is contained in:
unknown 2021-05-13 17:21:52 +02:00
parent f34bbd938d
commit 7e540587a5
9 changed files with 276 additions and 45 deletions

View file

@ -52,7 +52,7 @@ const pinApp = (state: State, action: Action): State => {
}
const addAppSuccess = (state: State, action: Action): State => {
const tmpApps = [...state.apps, ...action.payload];
const tmpApps = [...state.apps, action.payload];
return {
...state,