Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 2 errors #235

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/tutorials/targets/add-environment-variable/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Edit the `package.json` file so it looks like the following:
Create a React component that renders an image from an image placeholder service source provided by an environment variable.

```sh
mkdir -p src/components/PlaceholderImage && touch src/components/placeholderImage.js
mkdir -p src/components/PlaceholderImage && touch src/components/PlaceholderImage/placeholderImage.js
```

Inside the `placeholderImage.js`, add the following content:
Expand Down Expand Up @@ -202,7 +202,7 @@ The PlaceholderImage component uses this value to compute the source when it ren
Create a demo page component to render the ImagePlaceholder component.

```sh
mkdir -p src/components/PlaceholderImageDemo && touch src/component/PlaceholderImageDemo/placeholderImageDemo.js
mkdir -p src/components/PlaceholderImageDemo && touch src/components/PlaceholderImageDemo/placeholderImageDemo.js
```

Inside `placeholderImageDemo.js`, add the following content:
Expand Down