Skip to content

Commit

Permalink
fix(create-bottender-app): fix context concat and env name (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Sep 9, 2020
1 parent fa83724 commit acbc936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Action, ${contexts.join(', ')} } from 'bottender';
export default async function App(context: ${contexts.join(
' | '
)}): Promise<Action<${contexts.join(', ')}> |void> {
)}): Promise<Action<${contexts.join(' | ')}> | void> {
await context.sendText('Welcome to Bottender');
};
`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ LINE_CHANNEL_SECRET=
TELEGRAM_ACCESS_TOKEN=

SLACK_ACCESS_TOKEN=
SLACK_VERIFICATION_TOKEN=
SLACK_SIGNING_SECRET=

VIBER_ACCESS_TOKEN=

0 comments on commit acbc936

Please sign in to comment.