diff options
| author | Factiven <[email protected]> | 2023-04-13 18:24:09 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-13 18:24:09 +0700 |
| commit | c3d8c482531a767ee2e635b93eb0d6cd075247e8 (patch) | |
| tree | 9d87de7586046755d64f86e93a776b6f4e725982 /components | |
| parent | Update postcss.config.js (diff) | |
| download | moopa-c3d8c482531a767ee2e635b93eb0d6cd075247e8.tar.xz moopa-c3d8c482531a767ee2e635b93eb0d6cd075247e8.zip | |
Update 3rd
Diffstat (limited to 'components')
| -rw-r--r-- | components/hero/content.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/hero/content.js b/components/hero/content.js index a3db854..b7515d2 100644 --- a/components/hero/content.js +++ b/components/hero/content.js @@ -27,8 +27,7 @@ export default function Content({ ids, section, data }) { // console.log({ left: scrollLeft, right: scrollRight }); const array = data; - const filteredData = array.filter((item) => item.status !== "Unknown"); - + let filteredData = array.filter((item) => item.status !== "Unknown"); return ( <div> <h1 className="px-5 font-karla text-[20px] font-bold">{section}</h1> |