Skip to content

Commit be2a73c

Browse files
committed
Updates unlimited prompts condition.
1 parent 3bcf995 commit be2a73c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/app/prompt/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default async function Prompt() {
1919
}
2020
const prompts = await fetchUserPrompts(userId);
2121
const subscription = await fetchUserSubscription();
22-
const hasGeneratePromptAccess = subscription?.planType === 'PLATINUM';
22+
const hasGeneratePromptAccess = subscription?.planType === 'PLATINUM' || subscription?.planType === 'GOLD';
2323

2424
return (
2525
<div className="min-h-screen bg-ps-primary">

0 commit comments

Comments
 (0)