...
[arvados-workbench2.git] / src / store / dialog / dialog-reducer.ts
index 1675db4d76f6c226076b59bf1f6ac04848cb2e86..48f8ee8a1e6caac149fb07b8c94a10a46a3f2377 100644 (file)
@@ -4,9 +4,9 @@
 
 import { DialogAction, dialogActions } from "./dialog-actions";
 
-export type DialogState = Record<string, Dialog>;
+export type DialogState = Record<string, Dialog<any>>;
 
-export interface Dialog <T = any> {
+export interface Dialog <T> {
     open: boolean;
     data: T;
 }