Skip to content

Commit 8cc5be1

Browse files
committed
upgraded to 1.6.0
1 parent bd94d84 commit 8cc5be1

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"pretty-quick": "^3.1.3",
4949
"rimraf": "^3.0.2",
5050
"run-script-os": "^1.1.6",
51-
"turbo": "1.11.2",
51+
"turbo": "1.12.5",
5252
"typescript": "^4.8.4"
5353
},
5454
"engines": {

packages/ui/src/views/checkout/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const CheckoutModal = ({ open, onClose }) => {
114114
</Box>
115115
</Typography>
116116
<Typography variant='h6' component='div' sx={{ textDecoration: 'line-through', mt: 2, mb: 1 }}>
117-
$9.99/month
117+
$59.99/month
118118
</Typography>
119119
<Typography variant='subtitle2' color='textSecondary' mb={3}>
120120
First 7 days trial for FREE!

packages/ui/src/views/marketplaces/index.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -400,12 +400,9 @@ const Marketplace = () => {
400400
}}
401401
badgeContent={data.badge}
402402
color={
403-
data.badge === 'POPULAR'
404-
? 'primary'
405-
: data.badge === 'TUTORIAL'
406-
? 'success'
407-
: 'error'
408-
} >
403+
data.badge === 'POPULAR' ? 'primary' : data.badge === 'TUTORIAL' ? 'success' : 'error'
404+
}
405+
>
409406
{data.type === 'Chatflow' && (
410407
<ItemCard onClick={() => goToCanvas(data)} data={data} images={images[data.id]} />
411408
)}

0 commit comments

Comments
 (0)