File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import config from 'config'
8
8
9
9
import { SentryRoute } from 'sentry'
10
10
11
+ import { useUnverifiedPaymentMethods } from 'services/account/useUnverifiedPaymentMethods'
11
12
import { Provider } from 'shared/api/helpers'
12
13
import { Theme , useThemeContext } from 'shared/ThemeContext'
13
14
import A from 'ui/A'
@@ -19,7 +20,6 @@ import PlanBreadcrumb from './PlanBreadcrumb'
19
20
import { PlanPageDataQueryOpts } from './queries/PlanPageDataQueryOpts'
20
21
import Tabs from './Tabs'
21
22
22
- import { useUnverifiedPaymentMethods } from 'services/account/useUnverifiedPaymentMethods'
23
23
import { StripeAppearance } from '../../stripe'
24
24
25
25
const CancelPlanPage = lazy ( ( ) => import ( './subRoutes/CancelPlanPage' ) )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const UnverifiedPaymentMethodSchema = z.object({
13
13
hostedVerificationUrl : z . string ( ) ,
14
14
} )
15
15
16
- export const CurrentOrgPlanPageDataSchema = z
16
+ const CurrentOrgPlanPageDataSchema = z
17
17
. object ( {
18
18
owner : z
19
19
. object ( {
@@ -28,15 +28,15 @@ export const CurrentOrgPlanPageDataSchema = z
28
28
} )
29
29
. nullish ( )
30
30
31
- export interface UseCurrentOrgPlanPageDataArgs {
31
+ interface UseCurrentOrgPlanPageDataArgs {
32
32
provider : string
33
33
owner : string
34
34
opts ?: {
35
35
enabled ?: boolean
36
36
}
37
37
}
38
38
39
- export const query = `
39
+ const query = `
40
40
query GetCurrentOrgPlanPageData($owner: String!) {
41
41
owner(username: $owner) {
42
42
plan {
You can’t perform that action at this time.
0 commit comments