diff --git a/login-workflow/example/src/actions/AuthUIActions.tsx b/login-workflow/example/src/actions/AuthUIActions.tsx index 5bb1a892..f55036d9 100644 --- a/login-workflow/example/src/actions/AuthUIActions.tsx +++ b/login-workflow/example/src/actions/AuthUIActions.tsx @@ -11,7 +11,7 @@ function getRandomInt(max: number): number { function isRandomFailure(): boolean { const randomResponseNumber = getRandomInt(100); - return true; // randomResponseNumber < 10; + return false; // randomResponseNumber < 10; } type AuthUIActionsWithApp = (appHelper: AppContextType) => AuthUIActions;