We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe24f9 commit 0231b06Copy full SHA for 0231b06
apps/webapp/app/routes/_app.orgs.$organizationSlug.settings.private-connections._index/route.tsx
@@ -173,7 +173,7 @@ export default function Page() {
173
disabled: !hasInProgressConnections,
174
});
175
176
- const hasPrivateNetworking = true;
+ const hasPrivateNetworking = plan?.v3Subscription?.plan?.limits?.hasPrivateNetworking ?? false;
177
const limit = plan?.v3Subscription?.plan?.limits?.privateLinkConnectionLimit ?? 2;
178
const canAdd = connections.filter((c) => c.status !== "DELETING").length < limit;
179
0 commit comments