diff --git a/flowsint-app/src/components/graphs/details-panel/details-panel.tsx b/flowsint-app/src/components/graphs/details-panel/details-panel.tsx index 8297c50b..b4dc9100 100644 --- a/flowsint-app/src/components/graphs/details-panel/details-panel.tsx +++ b/flowsint-app/src/components/graphs/details-panel/details-panel.tsx @@ -113,7 +113,7 @@ function KeyValueDisplay({ data, className }: KeyValueDisplayProps) { {data && Object.entries(data) .filter( - ([key]) => !['sketch_id', 'caption', 'size', 'color', 'description'].includes(key) + ([key]) => !['sketch_id', 'caption', 'size', 'color', 'description', 'x', 'y'].includes(key) ) .map(([key, value], index) => { let val: string | null = null diff --git a/flowsint-app/src/components/graphs/toolbar.tsx b/flowsint-app/src/components/graphs/toolbar.tsx index 41ef5047..2f8864ba 100644 --- a/flowsint-app/src/components/graphs/toolbar.tsx +++ b/flowsint-app/src/components/graphs/toolbar.tsx @@ -164,8 +164,8 @@ export const Toolbar = memo(function Toolbar({ isLoading }: { isLoading: boolean ) return ( - <> -