removed alias since we enabled identity merge for mixpanel
This commit is contained in:
parent
dbc850bd7c
commit
0d94f8e3a0
|
|
@ -127,9 +127,8 @@ type QueryHomeScreenProps = {
|
||||||
|
|
||||||
class QueryHomeScreen extends React.Component<QueryHomeScreenProps> {
|
class QueryHomeScreen extends React.Component<QueryHomeScreenProps> {
|
||||||
handleCreateNewQuery = (dataSource: Datasource, params: string) => {
|
handleCreateNewQuery = (dataSource: Datasource, params: string) => {
|
||||||
const { actions, pages } = this.props;
|
const { actions } = this.props;
|
||||||
const pageId = new URLSearchParams(params).get("importTo");
|
const pageId = new URLSearchParams(params).get("importTo");
|
||||||
const page = pages.find(page => page.pageId === pageId);
|
|
||||||
if (pageId) {
|
if (pageId) {
|
||||||
const newQueryName = createNewQueryName(actions, pageId);
|
const newQueryName = createNewQueryName(actions, pageId);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@ import {
|
||||||
selectPlugin,
|
selectPlugin,
|
||||||
createDatasource,
|
createDatasource,
|
||||||
changeDatasource,
|
changeDatasource,
|
||||||
testDatasource,
|
|
||||||
setDatsourceEditorMode,
|
setDatsourceEditorMode,
|
||||||
expandDatasourceEntity,
|
expandDatasourceEntity,
|
||||||
fetchDatasourceStructure,
|
fetchDatasourceStructure,
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@ import { INVITE_USERS_TO_ORG_FORM } from "constants/forms";
|
||||||
import PerformanceTracker, {
|
import PerformanceTracker, {
|
||||||
PerformanceTransactionName,
|
PerformanceTransactionName,
|
||||||
} from "utils/PerformanceTracker";
|
} from "utils/PerformanceTracker";
|
||||||
import { ANONYMOUS_USERNAME } from "constants/userConstants";
|
|
||||||
|
|
||||||
export function* createUserSaga(
|
export function* createUserSaga(
|
||||||
action: ReduxActionWithPromise<CreateUserRequest>,
|
action: ReduxActionWithPromise<CreateUserRequest>,
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,6 @@ class AnalyticsUtil {
|
||||||
name: userData.name,
|
name: userData.name,
|
||||||
userId: userId,
|
userId: userId,
|
||||||
});
|
});
|
||||||
windowDoc.analytics.alias(userId);
|
|
||||||
}
|
}
|
||||||
Sentry.configureScope(function(scope) {
|
Sentry.configureScope(function(scope) {
|
||||||
scope.setUser({
|
scope.setUser({
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user