Skip to content
Snippets Groups Projects
Commit 04cee2a6 authored by Matheus Barbosa Silva's avatar Matheus Barbosa Silva Committed by Guilherme Gazzo
Browse files

fix: Upgrade option is being presented to Premium workspaces when uploading private apps (#33416)

parent 08d3df6d
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ const AppsProvider = ({ children }: AppsProviderProps) => {
await Promise.all([queryClient.invalidateQueries(['marketplace'])]);
},
orchestrator: AppClientOrchestratorInstance,
privateAppsEnabled: (limits?.privateApps?.max ?? 0) > 0,
privateAppsEnabled: (limits?.privateApps?.max ?? 0) !== 0,
}}
/>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment