wilitp před 4 roky
rodič
revize
ecc13e3e9f
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      app/src/context/auth/actionTypes.ts

+ 3 - 3
app/src/context/auth/actionTypes.ts

@@ -14,7 +14,7 @@ export type ActionType =
 
 export type Action = {
   type: ActionType;
-  username?: string;
-  userToken?: string;
-  error?: string;
+  username?: string | null;
+  userToken?: string | null;
+  error?: string | null;
 };