Skip to content

Commit

Permalink
fix: satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
GideonKoenig committed Jan 21, 2025
1 parent ff3a7b5 commit b940895
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/packages/safe-ds-eda/types/*.d.ts
/packages/safe-ds-editor/postcss.config.js
/packages/safe-ds-editor/vite.config.js
/packages/safe-ds-editor/tailwind.config.js
/packages/safe-ds-editor/tailwind.config.ts
/packages/safe-ds-editor/types/**/*.d.ts
/packages/safe-ds-editor/svelte.config.js
/packages/safe-ds-editor/src/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
export let className = '';
const SvgComponent = svgMap[name.toLowerCase()];
if (!SvgComponent) console.log(`Unable to retrieve Icon for Category <${name}>`);
</script>

{#if SvgComponent}
Expand Down
1 change: 0 additions & 1 deletion packages/safe-ds-editor/src/components/flow/flow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
const runUntilHere = (id: string) => {
const target = $nodes.find((node) => node.id === id);
if (!target) {
console.log(`Unknown node: ${id}`);
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
disabled={isSegment}
class="data-[highlighted]:bg-node-normal data-[highlighted]:text-text-normal"
on:click={() => {
console.log('run until here');
runUntilHere(id);
}}>Run until here</ContextMenu.Item
>
Expand Down
4 changes: 3 additions & 1 deletion packages/safe-ds-editor/src/pages/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@
return array;
});
if (error.action === 'notify') console.log(error.message);
if (error.action === 'notify') {
// Behaviour not implemented - Not necessary for the View
}
};
setContext('handleError', handleError);
Expand Down

0 comments on commit b940895

Please sign in to comment.