Skip to content

Commit b6262aa

Browse files
authored
fix: Remove gibberish from pricing page (supabase#36471)
Remove extra word from responsive rows.
1 parent 7322007 commit b6262aa

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

apps/www/components/Pricing/ComputePricingTable.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import React, { Fragment, useMemo } from 'react'
1+
import Link from 'next/link'
2+
import { Fragment, useMemo } from 'react'
3+
4+
import { cn } from 'ui'
25
import pricingAddOn from '~/data/PricingAddOnTable.json'
36
import { IconPricingIncludedCheck, IconPricingMinus } from './PricingIcons'
4-
import { cn } from 'ui'
5-
import Link from 'next/link'
67

78
const ComputePricingTable = () => {
89
const columnNames = useMemo(
@@ -100,7 +101,7 @@ const ComputePricingTable = () => {
100101
<IconPricingMinus plan="Free Plan" />
101102
)
102103
) : (
103-
column.value + 'asd'
104+
column.value
104105
)}
105106
</td>
106107
</tr>

0 commit comments

Comments
 (0)