File tree 4 files changed +25
-3
lines changed
components/settings/platform/dashboard
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change
1
+ import { EmptyScreen , Button } from "@calcom/ui" ;
2
+
3
+ export default function NoPlatformPlan ( ) {
4
+ return (
5
+ < EmptyScreen
6
+ Icon = "credit-card"
7
+ headline = "Subscription needed"
8
+ description = "You are not subscribed to a Platform plan."
9
+ buttonRaw = {
10
+ < div className = "flex gap-2" >
11
+ < Button href = "https://cal.com/platform/pricing" > Go to Pricing</ Button >
12
+ < Button color = "secondary" href = "https://cal.com/pricing" >
13
+ Contact Sales
14
+ </ Button >
15
+ </ div >
16
+ }
17
+ />
18
+ ) ;
19
+ }
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { useDeleteOAuthClient } from "@lib/hooks/settings/platform/oauth-clients
12
12
13
13
import PageWrapper from "@components/PageWrapper" ;
14
14
import { HelpCards } from "@components/settings/platform/dashboard/HelpCards" ;
15
+ import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan" ;
15
16
import { ManagedUserList } from "@components/settings/platform/dashboard/managed-user-list" ;
16
17
import { OAuthClientsList } from "@components/settings/platform/dashboard/oauth-clients-list" ;
17
18
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes" ;
@@ -98,7 +99,7 @@ export default function Platform() {
98
99
hideHeadingOnMobile
99
100
withoutMain = { false }
100
101
SidebarContainer = { < > </ > } >
101
- You are not subscribed to a Platform plan.
102
+ < NoPlatformPlan />
102
103
</ Shell >
103
104
</ div >
104
105
) ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { useOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/useOA
10
10
import { useUpdateOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/usePersistOAuthClient" ;
11
11
12
12
import PageWrapper from "@components/PageWrapper" ;
13
+ import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan" ;
13
14
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes" ;
14
15
import type { FormValues } from "@components/settings/platform/oauth-clients/oauth-client-form" ;
15
16
import { OAuthClientForm as EditOAuthClientForm } from "@components/settings/platform/oauth-clients/oauth-client-form" ;
@@ -124,7 +125,7 @@ export default function EditOAuthClient() {
124
125
return (
125
126
< div >
126
127
< Shell isPlatformUser = { true } hideHeadingOnMobile withoutMain = { false } SidebarContainer = { < > </ > } >
127
- You are not subscribed to a Platform plan.
128
+ < NoPlatformPlan />
128
129
</ Shell >
129
130
</ div >
130
131
) ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { showToast } from "@calcom/ui";
9
9
import { useCreateOAuthClient } from "@lib/hooks/settings/platform/oauth-clients/usePersistOAuthClient" ;
10
10
11
11
import PageWrapper from "@components/PageWrapper" ;
12
+ import NoPlatformPlan from "@components/settings/platform/dashboard/NoPlatformPlan" ;
12
13
import { useGetUserAttributes } from "@components/settings/platform/hooks/useGetUserAttributes" ;
13
14
import type { FormValues } from "@components/settings/platform/oauth-clients/oauth-client-form" ;
14
15
import { OAuthClientForm } from "@components/settings/platform/oauth-clients/oauth-client-form" ;
@@ -82,7 +83,7 @@ export default function CreateOAuthClient() {
82
83
return (
83
84
< div >
84
85
< Shell isPlatformUser = { true } hideHeadingOnMobile withoutMain = { false } SidebarContainer = { < > </ > } >
85
- You are not subscribed to a Platform plan.
86
+ < NoPlatformPlan />
86
87
</ Shell >
87
88
</ div >
88
89
) ;
You can’t perform that action at this time.
0 commit comments