summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/context/pageState.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/context/pageState.ts')
-rw-r--r--packages/demobank-ui/src/context/pageState.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/demobank-ui/src/context/pageState.ts b/packages/demobank-ui/src/context/pageState.ts
index 4ef21b8f0..b954ad20e 100644
--- a/packages/demobank-ui/src/context/pageState.ts
+++ b/packages/demobank-ui/src/context/pageState.ts
@@ -29,7 +29,6 @@ export type Type = {
};
const initial: Type = {
pageState: {
- isLoggedIn: false,
isRawPayto: false,
withdrawalInProgress: false,
},
@@ -59,7 +58,6 @@ export const PageStateProvider = ({
*/
function usePageState(
state: PageStateType = {
- isLoggedIn: false,
isRawPayto: false,
withdrawalInProgress: false,
},
@@ -98,7 +96,6 @@ function usePageState(
* Track page state.
*/
export interface PageStateType {
- isLoggedIn: boolean;
isRawPayto: boolean;
withdrawalInProgress: boolean;
error?: {