We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d86333 commit fd8fba8Copy full SHA for fd8fba8
src/reducers/alerts.js
@@ -32,7 +32,10 @@ export default function(state = {}, action) {
32
switch(action.type) {
33
case CREATE_PROJECT_SUCCESS: {
34
const name = _.truncate(action.payload.name, 20)
35
- Alert.success(`Project '${name}' created`)
+
36
+ //temporary workaround
37
+ setTimeout(() => { Alert.success(`Project '${name}' created`) }, 0)
38
39
return state
40
}
41
0 commit comments