Skip to content

Commit 13dc582

Browse files
Merge pull request #61 from Geode-solutions/fix/remove_imports
fix(imports): remove store imports
2 parents d35976c + be0d261 commit 13dc582

File tree

15 files changed

+0
-30
lines changed

15 files changed

+0
-30
lines changed

components/Errors/Banner.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
</template>
4444

4545
<script setup>
46-
import { use_errors_store } from "@/stores/errors"
4746
const errors_store = use_errors_store()
4847
const { server_error } = storeToRefs(errors_store)
4948

components/Errors/Snackers.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
</template>
5656

5757
<script setup>
58-
import { use_errors_store } from "@/stores/errors"
5958
const errors_store = use_errors_store()
6059
const { errors } = storeToRefs(errors_store)
6160

components/Launcher.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
</template>
1919

2020
<script setup>
21-
import { use_websocket_store } from "@/stores/websocket"
22-
import { use_cloud_store } from "@/stores/cloud"
23-
2421
const websocket_store = use_websocket_store()
2522
const cloud_store = use_cloud_store()
2623
const { is_captcha_validated, is_connexion_launched, is_running } =

components/PackagesVersions.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
</template>
2020

2121
<script setup>
22-
import { use_cloud_store } from "@/stores/cloud"
2322
const cloud_store = use_cloud_store()
2423
const { is_running } = storeToRefs(cloud_store)
2524

components/Recaptcha.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
<script setup>
1515
import { VueRecaptcha } from "vue-recaptcha"
16-
import { use_cloud_store } from "@/stores/cloud"
1716
const cloud_store = use_cloud_store()
1817
const { is_captcha_validated } = storeToRefs(cloud_store)
1918

components/RemoteRenderingView.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
<script setup>
2424
import vtkRemoteView from "@kitware/vtk.js/Rendering/Misc/RemoteView"
2525
import { useElementSize } from "@vueuse/core"
26-
import { use_viewer_store } from "@/stores/viewer"
27-
import { use_websocket_store } from "@/stores/websocket"
2826
2927
const viewer_store = use_viewer_store()
3028
const { picking_mode } = storeToRefs(viewer_store)

components/ViewToolbar.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
</template>
2020

2121
<script setup>
22-
import { use_viewer_store } from "@/stores/viewer"
23-
2422
const viewer_store = use_viewer_store()
2523
function reset_camera() {
2624
viewer_store.reset_camera()

components/Wrapper.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
</template>
1919

2020
<script setup>
21-
import { use_cloud_store } from "@/stores/cloud"
22-
2321
const cloud_store = use_cloud_store()
2422
const { is_running } = storeToRefs(cloud_store)
2523

composables/api_fetch.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import Ajv from "ajv"
22
import _ from "lodash"
33

4-
import { use_errors_store } from "@/stores/errors"
5-
import { use_geode_store } from "@/stores/geode"
6-
74
export function api_fetch(
85
{ schema, params },
96
{ request_error_function, response_function, response_error_function } = {},

composables/runFunctionIfCloudRunning.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { use_cloud_store } from "@/stores/cloud"
2-
31
export default function (function_to_run) {
42
const cloud_store = use_cloud_store()
53
const { is_running } = storeToRefs(cloud_store)

0 commit comments

Comments
 (0)