Skip to content

Commit 8067475

Browse files
author
de Keijser
committed
fix: use correct import path
1 parent 09d8b9c commit 8067475

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

apps/catalogue/gql/variable.js renamed to apps/catalogue/gql/variable.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import gql from "graphql-tag";
2-
import mappingsFragment from "../gql/fragments/mappings";
3-
import { moduleToString } from "../tailwind-components/utils/moduleToString";
2+
import mappingsFragment from "./fragments/mappings";
3+
import { moduleToString } from "../../tailwind-components/utils/moduleToString";
44
export default gql`
55
query Variables(
66
$variableFilter:VariablesFilter,

apps/ui/pages/admin.vue

+2-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@
6666
</template>
6767

6868
<script setup lang="ts">
69-
import type { EditUserModal, NewUserModal } from "#build/components";
7069
import { definePageMeta } from "#imports";
71-
import { ref, computed } from "vue";
70+
import { computed, ref } from "vue";
7271
import {
7372
createUser,
7473
deleteUser,
@@ -92,7 +91,7 @@ definePageMeta({
9291
});
9392
9493
const LIMIT = 100;
95-
const showEditUserModal = ref(false)
94+
const showEditUserModal = ref(false);
9695
const showNewUserModal = ref(false);
9796
const selectedUser = ref<IUser | null>(null);
9897

0 commit comments

Comments
 (0)