Skip to content

Commit

Permalink
[Content] SEO tab revamp Phase 1 (#2927)
Browse files Browse the repository at this point in the history
  • Loading branch information
finnar-bin authored Aug 27, 2024
1 parent ebf62ab commit fa740c1
Show file tree
Hide file tree
Showing 52 changed files with 2,933 additions and 2,187 deletions.
4 changes: 3 additions & 1 deletion src/apps/content-editor/src/app/components/Editor/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export default memo(function Editor({

const activeFields = useMemo(() => {
if (fields?.length) {
return fields.filter((field) => !field.deletedAt);
return fields.filter(
(field) => !field.deletedAt && field.name !== "og_image"
);
}

return [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
.Fields {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;

scrollbar-width: none; /* FireFox */
Expand Down
Loading

0 comments on commit fa740c1

Please sign in to comment.