Skip to content

Commit

Permalink
chore: Simplify Ref
Browse files Browse the repository at this point in the history
  • Loading branch information
ramedina86 committed Oct 29, 2024
1 parent fccd9df commit 0a95b67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/builder/BuilderFieldsTools.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</template>

<script setup lang="ts">
import { toRefs, inject, computed, ref, Ref } from "vue";
import { toRefs, inject, computed, ref } from "vue";
import { Component, FieldControl } from "@/writerTypes";

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.12)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.9)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.12)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.9)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.12)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.11)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.9)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 52 in src/ui/src/builder/BuilderFieldsTools.vue

View workflow job for this annotation

GitHub Actions / build (3.10)

'FieldControl' is defined but never used. Allowed unused vars must match /^_/u
import { useComponentActions } from "./useComponentActions";
import injectionKeys from "../injectionKeys";
Expand Down Expand Up @@ -108,7 +108,7 @@ const toolFormInitValue = {
graphId: "999-999",
};
const toolForm: Ref<ToolForm> = ref(toolFormInitValue);
const toolForm = ref<ToolForm>(toolFormInitValue);
const props = defineProps<{
componentId: Component["id"];
Expand Down

0 comments on commit 0a95b67

Please sign in to comment.