aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/authMethod/index.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-11-04 12:37:27 -0300
committerSebastian <sebasjm@gmail.com>2021-11-04 12:37:58 -0300
commit4ac0b23793417536281f7d3c67c4c954da795f88 (patch)
tree8f793d8d8cd6b9f4755d3cdcb3a1fe1f00ec1fba /packages/anastasis-webui/src/pages/home/authMethod/index.tsx
parentc87be3707efe7a675599b37f9327c6810d5fc011 (diff)
downloadwallet-core-4ac0b23793417536281f7d3c67c4c954da795f88.tar.xz
testing provider screen
Diffstat (limited to 'packages/anastasis-webui/src/pages/home/authMethod/index.tsx')
-rw-r--r--packages/anastasis-webui/src/pages/home/authMethod/index.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/anastasis-webui/src/pages/home/authMethod/index.tsx b/packages/anastasis-webui/src/pages/home/authMethod/index.tsx
index 1e1d7bc03..7b0cce883 100644
--- a/packages/anastasis-webui/src/pages/home/authMethod/index.tsx
+++ b/packages/anastasis-webui/src/pages/home/authMethod/index.tsx
@@ -17,6 +17,7 @@ interface AuthMethodConfiguration {
icon: VNode;
label: string;
screen: (props: AuthMethodSetupProps) => VNode;
+ skip?: boolean;
}
export type KnownAuthMethods = "sms" | "email" | "post" | "question" | "video" | "totp" | "iban";
@@ -62,7 +63,7 @@ export const authMethods: KnowMethodConfig = {
video: {
icon: <img src={videoIcon} />,
label: "Video",
- screen: VideScreen
-
+ screen: VideScreen,
+ skip: true,
}
} \ No newline at end of file