Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kazcw committed May 22, 2024
1 parent ea56d18 commit 6b389b4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/gui2/src/components/GraphEditor/collapsing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export function performCollapse(
}
const argNames = info.extracted.inputs
const collapsedFunction = Ast.Function.fromStatements(edit, collapsedName, argNames, collapsed)
const collapsedFunctionWithIcon = Ast.Documented.new("ICON group", collapsedFunction)
const collapsedFunctionWithIcon = Ast.Documented.new('ICON group', collapsedFunction)
topLevel.insert(posToInsert, collapsedFunctionWithIcon, undefined)
return { refactoredNodeId, collapsedNodeIds, outputNodeId }
}
Expand Down
1 change: 0 additions & 1 deletion app/gui2/src/components/SelectionMenu.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script setup lang="ts">
import ColorPickerMenu from '@/components/ColorPickerMenu.vue'
import SvgIcon from '@/components/SvgIcon.vue'
import ToggleIcon from '@/components/ToggleIcon.vue'
import SvgButton from './SvgButton.vue'
Expand Down
2 changes: 1 addition & 1 deletion app/gui2/src/components/ToggleIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import SvgButton from '@/components/SvgButton.vue'
import type { Icon } from '@/util/iconName'
const props = withDefaults(defineProps<{ icon: Icon; modelValue?: boolean }>(), {
const _props = withDefaults(defineProps<{ icon: Icon; modelValue?: boolean }>(), {
modelValue: false,
})
const emit = defineEmits<{
Expand Down

0 comments on commit 6b389b4

Please sign in to comment.