From c1fac27ccf7c71e20c3e22e6e68b1efa8c77ee76 Mon Sep 17 00:00:00 2001 From: Shreedhar Hegde Date: Thu, 28 Apr 2022 09:35:04 +0530 Subject: [PATCH] modified docusaurus admonitions of the files as suggested --- .../backend/payment/frontend-payment-flow-in-checkout.md | 5 ++--- ...adless-ecommerce-store-with-gatsby-contentful-medusa.md | 2 +- .../troubleshooting/transaction-error-in-checkout.md | 7 ++++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/content/advanced/backend/payment/frontend-payment-flow-in-checkout.md b/docs/content/advanced/backend/payment/frontend-payment-flow-in-checkout.md index 74131196af..eeb1ba83a9 100644 --- a/docs/content/advanced/backend/payment/frontend-payment-flow-in-checkout.md +++ b/docs/content/advanced/backend/payment/frontend-payment-flow-in-checkout.md @@ -3,14 +3,13 @@ ## Introduction The purpose of this guide is to describe a checkout flow in Medusa. It is assumed that you've completed our [Quickstart](https://docs.medusajs.com/quickstart/quick-start) or [Tutorial](https://docs.medusajs.com/tutorial/set-up-your-development-environment) and are familiar with the technologies we use in our stack. Additionally, having an understanding of the [core API](https://docs.medusajs.com/api/store/auth) would serve as a great foundation for this walkthrough. +:::note +All code snippets in the following guide, use the JS SDK distributed through **npm**. To install it, run: ```bash npm2yarn npm install @medusajs/medusa-js ``` -:::note - -All code snippets in the following guide, use the JS SDK distributed through **npm**. To install it, run: ::: diff --git a/docs/content/how-to/headless-ecommerce-store-with-gatsby-contentful-medusa.md b/docs/content/how-to/headless-ecommerce-store-with-gatsby-contentful-medusa.md index 8a0aa4ff72..506017afcf 100644 --- a/docs/content/how-to/headless-ecommerce-store-with-gatsby-contentful-medusa.md +++ b/docs/content/how-to/headless-ecommerce-store-with-gatsby-contentful-medusa.md @@ -4,7 +4,7 @@ title: Create a headless ecommerce store with Gatsby, Contentful & Medusa # Creating a headless ecommerce store with Gatsby, Contentful and Medusa -:::note +:::info About Medusa Medusa is an open source headless commerce engine that allow you to create amazing digital commerce experiences. Medusa is highly customizable, allowing you to extend the core to fit your needs. diff --git a/docs/content/troubleshooting/transaction-error-in-checkout.md b/docs/content/troubleshooting/transaction-error-in-checkout.md index 7ff59fbf38..fcaaeb5a17 100644 --- a/docs/content/troubleshooting/transaction-error-in-checkout.md +++ b/docs/content/troubleshooting/transaction-error-in-checkout.md @@ -34,11 +34,12 @@ module.exports = { } ``` -```bash npm2yarn -npm run seed -``` :::note When changing from SQLite to Postgres, you should seed the database again using: +```bash npm2yarn +npm run seed +``` + :::