We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5e729 commit 1a55c9fCopy full SHA for 1a55c9f
gui/pages/Content/Marketplace/MarketplacePublic.js
@@ -6,7 +6,8 @@ import Market from './Market';
6
export default function MarketplacePublic({env}) {
7
const handleSignupClick = () => {
8
if (env === 'PROD') {
9
- window.open(`https://app.superagi.com/`, '_self');
+ const url = localStorage.getItem('marketplace_tab') === 'market_models' ? 'https://models.superagi.com/' : 'https://app.superagi.com/';
10
+ window.open(url, '_self');
11
} else {
12
window.location.href = '/';
13
}
0 commit comments