Fix modal showing up bug, issue #99

This commit is contained in:
Valtteri Karesto
2022-03-09 13:27:42 +02:00
parent ddb043c104
commit 7f8f47cb14
2 changed files with 19 additions and 2 deletions

View File

@@ -65,6 +65,7 @@ export interface IState {
client: XrplClient | null;
clientStatus: "offline" | "online";
mainModalOpen: boolean;
mainModalShowed: boolean;
accounts: IAccount[];
}
@@ -93,6 +94,7 @@ let initialState: IState = {
client: null,
clientStatus: "offline" as "offline",
mainModalOpen: false,
mainModalShowed: false,
accounts: [],
};