Skip to content

Commit

Permalink
fix stack name (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
maekawataiki authored Feb 14, 2024
1 parent c9af5a3 commit af91646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cdk/bin/generative-ai-use-cases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { GenerativeAiUseCasesStack } from '../lib/generative-ai-use-cases-stack'

const app = new cdk.App();

const stage = app.node.tryGetContext('stage');
const stage = app.node.tryGetContext('stage') || '';

new GenerativeAiUseCasesStack(app, `${stage}GenerativeAiUseCasesStack`);

0 comments on commit af91646

Please sign in to comment.