Skip to content

Commit 54ef5fb

Browse files
committed
Update starter plan to grant 2 channels
https://claude.ai/code/session_01AfnwWGSbihMUqPyuVuPQJY
1 parent 851d700 commit 54ef5fb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/admin/admin-workspaces.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ export function AdminWorkspacesManager() {
491491
<SelectContent>
492492
<SelectItem value="FREE">Free — 3/mo, 1 channel</SelectItem>
493493
<SelectItem value="STARTER">
494-
Starter — 25/mo, 1 channel
494+
Starter — 25/mo, 2 channels
495495
</SelectItem>
496496
<SelectItem value="TEAM">
497497
Team — 100/mo, 3 channels

src/components/dashboard/settings-billing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const PLANS = [
7171
`${TIER_QUOTAS.STARTER} images per month`,
7272
`${TIER_IMAGE_QUALITY_LABEL.STARTER} image quality`,
7373
`${TIER_IMAGE_SIZE.STARTER} resolution`,
74-
`${TIER_MAX_CHANNELS.STARTER} channel`,
74+
`${TIER_MAX_CHANNELS.STARTER} channels`,
7575
"No watermark",
7676
"Collections",
7777
"AI style selection",

src/components/marketing/pricing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const tiers = [
4242
"25 generated images/month",
4343
`${TIER_IMAGE_QUALITY_LABEL.STARTER} image quality`,
4444
`${TIER_IMAGE_SIZE.STARTER} resolution`,
45-
"1 connected channel",
45+
"2 connected channels",
4646
`All ${allStyleCount} art styles`,
4747
"No watermark",
4848
"Full image history",

src/lib/tier-constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const TIER_QUOTAS: Record<string, number> = {
1010

1111
export const TIER_MAX_CHANNELS: Record<string, number> = {
1212
FREE: 1,
13-
STARTER: 1,
13+
STARTER: 2,
1414
TEAM: 3,
1515
BUSINESS: INFINITY,
1616
ENTERPRISE: INFINITY,

0 commit comments

Comments
 (0)