diff options
| author | Factiven <[email protected]> | 2023-04-24 23:43:05 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-24 23:43:05 +0700 |
| commit | fa3e2aeeb9894a133df5f79d97987c276c7f06a1 (patch) | |
| tree | e61c097bfd59517ca25e7a459ff88f097be9949e /components | |
| parent | initial commit on pre-dev (diff) | |
| download | moopa-fa3e2aeeb9894a133df5f79d97987c276c7f06a1.tar.xz moopa-fa3e2aeeb9894a133df5f79d97987c276c7f06a1.zip | |
Revamp UI 1
Diffstat (limited to 'components')
| -rw-r--r-- | components/hero/content.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/hero/content.js b/components/hero/content.js index 1a45860..98ec4a8 100644 --- a/components/hero/content.js +++ b/components/hero/content.js @@ -27,7 +27,7 @@ export default function Content({ ids, section, data }) { // console.log({ left: scrollLeft, right: scrollRight }); const array = data; - let filteredData = array?.filter((item) => item.status !== "Unknown"); + let filteredData = array?.filter((item) => item !== null); return ( <div> <h1 className="px-5 font-karla text-[20px] font-bold">{section}</h1> |