Skip to content

Commit

Permalink
fix: home page
Browse files Browse the repository at this point in the history
  • Loading branch information
okradze committed Nov 29, 2023
1 parent 7c1bdc1 commit c667726
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/ui/src/pages/Home/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react'
import GetStartedComponent from './HomeComponents/GetStartedComponent'

import { StyledInnerWrapper } from 'components/Layout/LayoutStyle'

Expand All @@ -18,6 +17,7 @@ import { useAgents } from 'pages/Agents/useAgents'

import HeaderText from './HomeComponents/HeaderText'
import { useGetAccountModule } from 'utils/useGetAccountModule'
import DiscoverSystemAgents from 'pages/Discover/components/DiscoverSystemAgents'

const Home = () => {
// const isProduction = import.meta.env.REACT_APP_ENV === 'production'
Expand All @@ -43,7 +43,7 @@ const Home = () => {
{agentModules?.list && agentsData?.length > 0 ? (
<Agents isHome />
) : (
<DiscoverSystemAgents />
<DiscoverTemplateAgents />
)}
</StyledWrapper>
</>
Expand All @@ -60,7 +60,7 @@ const Home = () => {
></StyledIframe>

<DiscoverTeamAgents />
<DiscoverTemplateAgents />
<DiscoverSystemAgents />
</>
)}
</StyledInnerWrapperEdit>
Expand Down

0 comments on commit c667726

Please sign in to comment.