Skip to content

Commit

Permalink
fix path to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Oct 26, 2023
1 parent a672779 commit 4ac11a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Tool/ToolHelpForum.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { BButton, BCard } from "bootstrap-vue";
import { computed, onMounted, ref } from "vue";
import { fetcher } from "@/schema";
import { fetcher } from "@/api/schema";
import { useConfigStore } from "@/stores/configurationStore";
import { createTopicUrl, type HelpForumPost, type HelpForumTopic, useHelpURLs } from "./helpForumServices";
import { createTopicUrl, type HelpForumPost, type HelpForumTopic, useHelpURLs } from "./helpForumUrls";
import Heading from "@/components/Common/Heading.vue";
import ExternalLink from "@/components/ExternalLink.vue";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { computed, Ref } from "vue";

import { components } from "@/schema";
import { components } from "@/api/schema";
import { useConfigStore } from "@/stores/configurationStore";

export type HelpForumTopic = components["schemas"]["HelpForumTopic"];
Expand Down

0 comments on commit 4ac11a6

Please sign in to comment.