Skip to content

Commit

Permalink
🎨 reordered imports with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
devtobi committed Aug 7, 2024
1 parent 85f5ebe commit b412166
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion refarch-frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ import { onMounted, ref } from "vue";
import InfoService from "@/api/InfoService";
import UserService from "@/api/UserService";
import LhmAvatar from "@/components/common/LhmAvatar.vue";
import TheSnackbar from "@/components/TheSnackbar.vue";
import { ROUTES_GETSTARTED } from "@/Constants";
import { useSnackbarStore } from "@/stores/snackbar";
import { useUserStore } from "@/stores/user";
import User, { UserLocalDevelopment } from "@/types/User";
import LhmAvatar from "@/components/common/LhmAvatar.vue";
const drawer = ref(true);
const query = ref<string>("");
Expand Down
4 changes: 2 additions & 2 deletions refarch-frontend/src/api/UserService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { API_BASE } from "@/Constants";
import User from "../types/User";
import FetchUtils from "@/api/FetchUtils";
import { API_BASE } from "@/Constants";
import User from "@/types/User";

export default class UserService {
/**
Expand Down
2 changes: 1 addition & 1 deletion refarch-frontend/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createApp } from "vue";

import { registerPlugins } from "@/plugins";
import App from "@/App.vue";
import { registerPlugins } from "@/plugins";

const app = createApp(App);

Expand Down
2 changes: 1 addition & 1 deletion refarch-frontend/src/plugins/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { App } from "vue";

import router from "@/router";
import pinia from "@/plugins/pinia";
import vuetify from "@/plugins/vuetify";
import router from "@/router";

export function registerPlugins(app: App) {
app.use(vuetify).use(router).use(pinia);
Expand Down

0 comments on commit b412166

Please sign in to comment.