diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
commit | 904bd1731447796cf1a2bd992c89f889f2a6263a (patch) | |
tree | c746534149722905792e8a1b0059568ed9cc1c7c /packages/client/src/components/CommitPatch.vue | |
parent | 8feb65c5467cc3ad48270183113a121c4a9f86ca (diff) |
Renamed the shared types package to api
Diffstat (limited to 'packages/client/src/components/CommitPatch.vue')
-rw-r--r-- | packages/client/src/components/CommitPatch.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/CommitPatch.vue b/packages/client/src/components/CommitPatch.vue index 4a3a999..b0e8086 100644 --- a/packages/client/src/components/CommitPatch.vue +++ b/packages/client/src/components/CommitPatch.vue @@ -2,7 +2,7 @@ import { defineComponent, h, PropType, VNode } from "vue"; import hljs from "highlight.js"; import hljs_languages from "../util/hljs-languages"; -import { Patch } from "shared_types"; +import { Patch } from "api"; export default defineComponent({ name: "CommitPatch", |