We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcf995 commit be2a73cCopy full SHA for be2a73c
1 file changed
apps/web/app/prompt/page.tsx
@@ -19,7 +19,7 @@ export default async function Prompt() {
19
}
20
const prompts = await fetchUserPrompts(userId);
21
const subscription = await fetchUserSubscription();
22
- const hasGeneratePromptAccess = subscription?.planType === 'PLATINUM';
+ const hasGeneratePromptAccess = subscription?.planType === 'PLATINUM' || subscription?.planType === 'GOLD';
23
24
return (
25
<div className="min-h-screen bg-ps-primary">
0 commit comments