Closes #842 - Toast messages hanging

This commit is contained in:
Tom Moor
2019-01-09 22:41:06 -08:00
parent c54c3d963e
commit 23b227c352
6 changed files with 60 additions and 58 deletions

View File

@@ -2,6 +2,8 @@
import Document from 'models/Document';
export type Toast = {
id: string,
createdAt: string,
message: string,
type: 'warning' | 'error' | 'info' | 'success',
};