mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 05:12:20 +00:00
rm logs
This commit is contained in:
@@ -11,8 +11,6 @@ export default async function Page() {
|
||||
server
|
||||
);
|
||||
|
||||
console.log(legal);
|
||||
|
||||
return (
|
||||
<div className="flex flex-col items-center space-y-4">
|
||||
<h1>Register</h1>
|
||||
|
||||
@@ -121,7 +121,6 @@ export function listSessions(
|
||||
): Promise<any | undefined> {
|
||||
const sessionService = session.getSession(server);
|
||||
const query = { offset: 0, limit: 100, asc: true };
|
||||
console.log(ids);
|
||||
const queries = [{ idsQuery: { ids } }];
|
||||
return sessionService.listSessions({ queries: queries }, {});
|
||||
}
|
||||
@@ -151,7 +150,6 @@ export function addHumanUser(
|
||||
}
|
||||
)
|
||||
.then((resp: AddHumanUserResponse) => {
|
||||
console.log("added user", resp.userId);
|
||||
return resp.userId;
|
||||
});
|
||||
}
|
||||
|
||||
@@ -43,7 +43,6 @@ export default function UsernameForm() {
|
||||
|
||||
function submitUsernameAndContinue(value: Inputs): Promise<boolean | void> {
|
||||
return submitUsername(value).then(({ factors }) => {
|
||||
console.log(factors);
|
||||
return router.push(
|
||||
`/password?` +
|
||||
new URLSearchParams({ loginName: `${factors.user.loginName}` })
|
||||
|
||||
@@ -85,7 +85,6 @@ export default function VerifyEmailForm({ userId, code, submit }: Props) {
|
||||
}
|
||||
|
||||
function submitCodeAndContinue(value: Inputs): Promise<boolean | void> {
|
||||
console.log(value);
|
||||
return submitCode(value).then((resp: any) => {
|
||||
return router.push(`/username`);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user