Skip to content

Commit

Permalink
fix issue that value was not getting display on the documentation page
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanPabloDiaz authored Nov 30, 2023
1 parent e64e46d commit 6e82101
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions _posts/platzi/2023-11-15-ecommerce-react-vite-tailwind.md
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`

### II. Modify the `Product Detail` Component

Expand Down Expand Up @@ -1396,7 +1396,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`

### II. Modify the `Card` Component

Expand Down Expand Up @@ -1683,7 +1683,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`

### III. Modify the **Card** Components

Expand Down Expand Up @@ -2324,7 +2324,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`
### II. Modify the `CheckoutSideMenu` Component
Expand Down Expand Up @@ -2875,7 +2875,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`
> [Compare old version with the new version of home](https://github.com/JuanPabloDiaz/platzi_shopi/commit/a0801b65fa4d8bc1791db542a69166181c3df37b)
Expand Down Expand Up @@ -2995,7 +2995,7 @@ export const AppProvider = ({ children }) => {
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`
## 29. Filter by Title
Expand Down Expand Up @@ -3150,7 +3150,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`
## 30. Filter by Category && Title
Expand Down Expand Up @@ -3477,7 +3477,7 @@ export const AppProvider = ({ children }) => {
);
};
```
> `value` is missing another set of `{}`. It should look like this: `value={{ ...content here.... }}`
> `value` is missing another set of `{}`. It should look like this: `value={ { ...content here.... } }`
### IV. Modify the `Home` Component
Expand Down

0 comments on commit 6e82101

Please sign in to comment.