Skip to content

Commit

Permalink
Fix one of the vue-tsc errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Feb 18, 2025
1 parent 6db028e commit e25f766
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ interface Props {
mode: "wizard" | "modal"; // in modal mode we need to show buttons and manage pairing components, wizard takes care these details
}
const props = defineProps<Props>();
const { gridApi, AgGridVue, onGridReady, theme } = useAgGrid(resize);
const { updateIdentifierIfUnchanged } = useUpdateIdentifiersForRemoveExtensions(props);
Expand All @@ -70,8 +72,6 @@ const emit = defineEmits<{
(e: "input-valid", value: boolean): void;
}>();
const props = defineProps<Props>();
const currentForwardFilter = ref(props.forwardFilter);
const currentReverseFilter = ref(props.reverseFilter);
const activeElements = ref(props.initialElements);
Expand Down

0 comments on commit e25f766

Please sign in to comment.