Skip to content

Commit

Permalink
Fix style for script filter
Browse files Browse the repository at this point in the history
and remove a console.log
  • Loading branch information
sim51 committed Jun 18, 2024
1 parent 3c0d07d commit 0c07c15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/GraphFilters/ScriptFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const ScriptFilter: FC<{
const parentGraph = useReadAtom(parentFilteredGraphAtom);

return (
<div>
<div className="w-100">
<div className="fs-5">
{t("filters.script")} ({t(`graph.model.${filter.itemType}`)})
</div>
Expand Down
1 change: 0 additions & 1 deletion src/core/layouts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ const gridEnabledAtom = derivedAtom(layoutStateAtom, (value) => pick(value.quali
checkOutput: true,
});
gridEnabledAtom.bindEffect((enabled) => {
console.log("HEY", enabled);
if (!enabled) return;

// Compute the layout quality metric when node's position changed
Expand Down

0 comments on commit 0c07c15

Please sign in to comment.