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 7322007 commit b6262aaCopy full SHA for b6262aa
apps/www/components/Pricing/ComputePricingTable.tsx
@@ -1,8 +1,9 @@
1
-import React, { Fragment, useMemo } from 'react'
+import Link from 'next/link'
2
+import { Fragment, useMemo } from 'react'
3
+
4
+import { cn } from 'ui'
5
import pricingAddOn from '~/data/PricingAddOnTable.json'
6
import { IconPricingIncludedCheck, IconPricingMinus } from './PricingIcons'
-import { cn } from 'ui'
-import Link from 'next/link'
7
8
const ComputePricingTable = () => {
9
const columnNames = useMemo(
@@ -100,7 +101,7 @@ const ComputePricingTable = () => {
100
101
<IconPricingMinus plan="Free Plan" />
102
)
103
) : (
- column.value + 'asd'
104
+ column.value
105
)}
106
</td>
107
</tr>
0 commit comments