Skip to content

Commit 889fe4d

Browse files
author
FalkWolsky
committed
Fix in Marketplace App Fetching
1 parent 796a0d9 commit 889fe4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/packages/lowcoder/src/pages/ApplicationV2/MarketplaceView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ export function MarketplaceView() {
4646
useEffect(() => {
4747
// Make sure we are fetching local marketplace apps for self-hosted environments
4848
if (window.location.host !== 'app.lowcoder.cloud') {
49-
fetchLocalMarketplaceApps();
49+
fetchMarketplaceApps();
5050
}
51-
fetchMarketplaceApps();
51+
fetchLocalMarketplaceApps();
5252
}, []);
5353

5454
return (

0 commit comments

Comments
 (0)