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 e5b317c commit d94fa09Copy full SHA for d94fa09
sdks/js/packages/core/react/components/organization/plans/index.tsx
@@ -194,6 +194,7 @@ const PlanPricingColumn = ({
194
value={selectedIntervalPricing.amount}
195
currency={selectedIntervalPricing.currency}
196
className={plansStyles.planPrice}
197
+ hideDecimals={config?.billing?.hideDecimals}
198
/>
199
<Text size={2} className={plansStyles.planPriceSub}>
200
per seat/{selectedInterval}
sdks/js/packages/core/shared/types.ts
@@ -4,6 +4,7 @@ export interface FrontierClientBillingOptions {
4
supportEmail?: string;
5
successUrl?: string;
6
cancelUrl?: string;
7
+ hideDecimals?: boolean;
8
}
9
10
export interface FrontierClientOptions {
0 commit comments