diff --git a/frontend/app/components/Client/Roles/components/RoleForm/RoleForm.tsx b/frontend/app/components/Client/Roles/components/RoleForm/RoleForm.tsx
index 578cc75ad..7aed70131 100644
--- a/frontend/app/components/Client/Roles/components/RoleForm/RoleForm.tsx
+++ b/frontend/app/components/Client/Roles/components/RoleForm/RoleForm.tsx
@@ -49,7 +49,6 @@ const RoleForm = (props: Props) => {
}
const writeOption = ({ name, value }: any) => {
- console.log('name', name);
if (name === 'permissions') {
onChangePermissions(value)
} else if (name === 'projects') {
diff --git a/frontend/app/components/Client/Users/UsersView.tsx b/frontend/app/components/Client/Users/UsersView.tsx
index 3b4d0c95f..a1240eb37 100644
--- a/frontend/app/components/Client/Users/UsersView.tsx
+++ b/frontend/app/components/Client/Users/UsersView.tsx
@@ -10,12 +10,13 @@ import { connect } from 'react-redux';
import AddUserButton from './components/AddUserButton';
interface Props {
+ isOnboarding?: boolean;
account: any;
isEnterprise: boolean;
limits: any;
}
function UsersView(props: Props) {
- const { account, limits, isEnterprise } = props;
+ const { account, limits, isEnterprise, isOnboarding = false } = props;
const { userStore, roleStore } = useStore();
const userCount = useObserver(() => userStore.list.length);
const roles = useObserver(() => roleStore.list);
@@ -49,7 +50,7 @@ function UsersView(props: Props) {
-
+
);
}
diff --git a/frontend/app/components/Client/Users/components/UserList/UserList.tsx b/frontend/app/components/Client/Users/components/UserList/UserList.tsx
index cae5ffd43..a86e6d7d7 100644
--- a/frontend/app/components/Client/Users/components/UserList/UserList.tsx
+++ b/frontend/app/components/Client/Users/components/UserList/UserList.tsx
@@ -9,10 +9,11 @@ import UserForm from '../UserForm';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
interface Props {
+ isOnboarding?: boolean;
isEnterprise?: boolean;
}
function UserList(props: Props) {
- const { isEnterprise = false } = props;
+ const { isEnterprise = false, isOnboarding = false } = props;
const { userStore } = useStore();
const loading = useObserver(() => userStore.loading);
const users = useObserver(() => userStore.list);
@@ -55,7 +56,7 @@ function UserList(props: Props) {
Name
Role
-
Created On
+ {!isOnboarding &&
Created On
}
@@ -67,6 +68,7 @@ function UserList(props: Props) {
generateInvite={() => userStore.generateInviteCode(user.userId)}
copyInviteCode={() => userStore.copyInviteCode(user.userId)}
isEnterprise={isEnterprise}
+ isOnboarding={isOnboarding}
/>
))}
diff --git a/frontend/app/components/Client/Users/components/UserListItem/UserListItem.tsx b/frontend/app/components/Client/Users/components/UserListItem/UserListItem.tsx
index 8628f029f..d7b7d0d55 100644
--- a/frontend/app/components/Client/Users/components/UserListItem/UserListItem.tsx
+++ b/frontend/app/components/Client/Users/components/UserListItem/UserListItem.tsx
@@ -2,7 +2,7 @@
import React from 'react';
import { Icon, Popup } from 'UI';
import { checkForRecent } from 'App/date';
-
+import cn from 'classnames';
const AdminPrivilegeLabel = ({ user }) => {
return (
@@ -13,6 +13,7 @@ const AdminPrivilegeLabel = ({ user }) => {
)
}
interface Props {
+ isOnboarding?: boolean;
user: any;
editHandler?: any;
generateInvite?: any;
@@ -26,6 +27,7 @@ function UserListItem(props: Props) {
generateInvite = () => {},
copyInviteCode = () => {},
isEnterprise = false,
+ isOnboarding = false
} = props;
return (
@@ -41,11 +43,13 @@ function UserListItem(props: Props) {
)}
-
- {user.createdAt && checkForRecent(user.createdAt, 'LLL dd, yyyy, hh:mm a')}
-
+ {!isOnboarding && (
+
+ {user.createdAt && checkForRecent(user.createdAt, 'LLL dd, yyyy, hh:mm a')}
+
+ )}
-
+
{!user.isJoined && user.invitationLink && !user.isExpiredInvite && (
diff --git a/frontend/app/components/Onboarding/components/ManageUsersTab/ManageUsersTab.js b/frontend/app/components/Onboarding/components/ManageUsersTab/ManageUsersTab.js
index c4d414395..1f4763247 100644
--- a/frontend/app/components/Onboarding/components/ManageUsersTab/ManageUsersTab.js
+++ b/frontend/app/components/Onboarding/components/ManageUsersTab/ManageUsersTab.js
@@ -1,5 +1,5 @@
+import UsersView from 'App/components/Client/Users/UsersView'
import React from 'react'
-import ManageUsers from '../../../Client/ManageUsers'
export default function ManageUsersTab() {
return (
@@ -9,9 +9,8 @@ export default function ManageUsersTab() {
👨💻
Invite Collaborators
-
-
-
+
+
diff --git a/frontend/app/components/Session_/Inspector/index.js b/frontend/app/components/Session_/Inspector/index.js
index e3fda7096..f76834fee 100644
--- a/frontend/app/components/Session_/Inspector/index.js
+++ b/frontend/app/components/Session_/Inspector/index.js
@@ -38,9 +38,7 @@ export default function Inspector () {
const onKeyPress = e => {
if (e.key === 'Backspace' || e.key === 'Delete') {
const elem = selectedElementRef.current;
- console.log(elem)
if (elem !== null && elem.parentElement !== null) {
- console.log('a?')
elem.parentElement.removeChild(elem);
setSelectedElement(null);
}
diff --git a/frontend/app/components/Session_/Player/Controls/Timeline.js b/frontend/app/components/Session_/Player/Controls/Timeline.js
index 828715499..3acdb4c11 100644
--- a/frontend/app/components/Session_/Player/Controls/Timeline.js
+++ b/frontend/app/components/Session_/Player/Controls/Timeline.js
@@ -95,7 +95,6 @@ export default class Timeline extends React.PureComponent {
const { endTime } = this.props;
const p = e.nativeEvent.offsetX / e.target.offsetWidth;
const time = Math.max(Math.round(p * endTime), 0);
- console.log(p, time, e, endTime)
this.props.jump(time);
}
diff --git a/frontend/app/components/shared/CodeSnippet/CodeSnippet.tsx b/frontend/app/components/shared/CodeSnippet/CodeSnippet.tsx
index 76f752f70..c9629bf7a 100644
--- a/frontend/app/components/shared/CodeSnippet/CodeSnippet.tsx
+++ b/frontend/app/components/shared/CodeSnippet/CodeSnippet.tsx
@@ -21,7 +21,6 @@ interface Props {
}
function CodeSnippet(props: Props) {
const { host, projectKey, ingestPoint, defaultInputMode, obscureTextNumbers, obscureTextEmails } = props;
- console.log('defaultInputMode', defaultInputMode)
const codeSnippet = `