Skip to content

Commit

Permalink
fix: incorrect casing
Browse files Browse the repository at this point in the history
  • Loading branch information
JTraill committed Jan 13, 2025
1 parent ebd6a2e commit f521887
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions web/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<v-main>
<router-view />
</v-main>
<snackbar />
</v-app>
</v-theme-provider>
</template>
Expand All @@ -34,6 +35,7 @@
import { mdiAccountCircle } from '@mdi/js';
import { ref } from 'vue';
import ProfileOffCanvas from './components/shared/ProfileOffCanvas.vue';
import Snackbar from './components/shared/Snackbar.vue';
import { useThemeStore } from './stores/ThemeStore';
const themeStore = useThemeStore();
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/shared/Snackbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</template>

<script setup>
import { useSnackbarStore } from '@/stores/SnackBarStore';
import { useSnackbarStore } from '@/stores/SnackbarStore';
import { mdiCloseCircle } from '@mdi/js';
const snackbarStore = useSnackbarStore();
const close = () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/services/HttpService.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { useSnackbarStore } from '@/stores/SnackbarStore';
import axios, {
AxiosInstance,
AxiosRequestConfig,
InternalAxiosRequestConfig,
} from 'axios';
import redirectHandlerService from './RedirectHandlerService';
import { useSnackbarStore } from '@/stores/SnackBarStore';

export interface IHttpService {
get<T>(resource: string, queryParams?: Record<string, any>): Promise<T>;
Expand Down
2 changes: 1 addition & 1 deletion web/src/stores/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export { useCommonStore } from './CommonStore';
export { useCourtFileSearchStore } from './CourtFileSearchStore';
export { useCourtListStore } from './CourtListStore';
export { useCriminalFileStore } from './CriminalFileStore';
export { useSnackbarStore } from './SnackBarStore';
export { useSnackbarStore } from './SnackbarStore';

0 comments on commit f521887

Please sign in to comment.