diff --git a/.gitmodules b/.gitmodules index eccc1b42f..e69de29bb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "ee/intelligent_search/llama"] - path = ee/intelligent_search/llama - url = https://github.com/facebookresearch/llama.git diff --git a/ee/intelligent_search/llama b/ee/intelligent_search/llama deleted file mode 160000 index b00a461a6..000000000 --- a/ee/intelligent_search/llama +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b00a461a6582196d8f488c73465f6c87f384a052 diff --git a/frontend/app/components/Onboarding/Onboarding.tsx b/frontend/app/components/Onboarding/Onboarding.tsx index b82a41e5e..d2fb8fc4f 100644 --- a/frontend/app/components/Onboarding/Onboarding.tsx +++ b/frontend/app/components/Onboarding/Onboarding.tsx @@ -1,14 +1,16 @@ import React from 'react'; -import { Icon } from 'UI'; -import SideMenu from './components/SideMenu'; +import { Redirect, Route, RouteComponentProps, Switch } from 'react-router'; import { withRouter } from 'react-router-dom'; -import { Switch, Route, Redirect, RouteComponentProps } from 'react-router'; + import { OB_TABS, onboarding as onboardingRoute } from 'App/routes'; -import InstallOpenReplayTab from './components/InstallOpenReplayTab'; +import { withSiteId } from 'App/routes'; +import { Icon } from 'UI'; + import IdentifyUsersTab from './components/IdentifyUsersTab'; +import InstallOpenReplayTab from './components/InstallOpenReplayTab'; import IntegrationsTab from './components/IntegrationsTab'; import ManageUsersTab from './components/ManageUsersTab'; -import { withSiteId } from 'App/routes'; +import SideMenu from './components/SideMenu'; interface Props { match: { @@ -20,12 +22,10 @@ interface Props { history: RouteComponentProps['history']; } - const platformMap = { - 'ios': 'mobile', - 'web': 'web', -} - + ios: 'mobile', + web: 'web', +}; const Onboarding = (props: Props) => { const platforms = [ @@ -62,11 +62,9 @@ const Onboarding = (props: Props) => { }; return ( -