Skip to content

Commit 448d96b

Browse files
committed
addressed review
1 parent cbccf3d commit 448d96b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/composables/node/useNodePricing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
789789
if (resolution.includes('720p')) return '$1.83/Run'
790790
if (resolution.includes('540p')) return '$1.03/Run'
791791
}
792-
} else if (model.includes('ray-1.6')) {
792+
} else if (model.includes('ray-1-6')) {
793793
return '$0.50/Run'
794794
}
795795

@@ -826,7 +826,7 @@ const apiNodeCosts: Record<string, { displayPrice: string | PricingFunction }> =
826826
if (resolution.includes('4k')) return '$5.65/Run'
827827
if (resolution.includes('1080p')) return '$1.42/Run'
828828
if (resolution.includes('720p')) return '$0.61/Run'
829-
if (resolution.includes('540p')) return '$$0.36/Run'
829+
if (resolution.includes('540p')) return '$0.36/Run'
830830
}
831831
} else if (model.includes('ray-2')) {
832832
if (duration.includes('5s')) {

0 commit comments

Comments
 (0)