Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/cards/AgentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const AgentCard = ({
onClick={onAddToHome}
className={`${readexPro.className} text-nowrap text-sm md:text-md shrink-0 hover:opacity-80 border-cyan font-medium border px-2 py-2 shadow-early-access-button shrink-0 flex flex-row items-center text-white`}>
<DynamicIcon name={isOnHome() ? 'PlayIcon' : 'SquaresPlusIcon'} width={24} height={24} className='text-primary mr-3'/>
{ isOnHome() ? `Open App` : `Add to Home` }
{ isOnHome() ? `Talk to agent` : `Add to Home` }
</button>
</div>
}
Expand Down
2 changes: 1 addition & 1 deletion screens/home/MainHomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const EmptyHome = () => {
}

const onItemPress = (element: any, router: any) => {
router.push(`/${element.type === "agent" ? 'agent/main' : 'app'}/${element.username}`)
router.push(`/${element.type === "agent" ? 'agent' : 'app'}/${element.username}`)
}

const HomeList = ({ home }: any) => {
Expand Down