Skip to content

Commit

Permalink
Add example of tabularData to kitchen sink
Browse files Browse the repository at this point in the history
  • Loading branch information
amcaplan committed Jan 9, 2025
1 parent ec1411f commit 413f784
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/cli/src/cli/services/kitchen-sink/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ export async function staticService() {
],
})

renderInfo({
headline: 'About your app',

Check warning on line 38 in packages/cli/src/cli/services/kitchen-sink/static.ts

View workflow job for this annotation

GitHub Actions / ESLint Report Analysis

packages/cli/src/cli/services/kitchen-sink/static.ts#L38

[@shopify/cli/banner-headline-format] The headline attribute should end with punctuation.
customSections: [
{
body: {
tabularData: [
['Configuration file', {filePath: 'shopify.app.scalable-transaction-app.toml'}],
['App name', {userInput: 'scalable-transaction-app'}],
['Access scopes', 'read_products,write_products'],
],
firstColumnSubdued: true,
},
},
],
})

renderInfo({
headline: [{userInput: 'my-app'}, 'initialized and ready to build.'],
nextSteps: [
Expand Down

0 comments on commit 413f784

Please sign in to comment.