Skip to content

Commit 9d9160d

Browse files
rename stores function use<Name>Store
1 parent 25098d4 commit 9d9160d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

components/FeedBack/ErrorBanner.vue

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

4545
<script setup>
46-
const feedback_store = use_feedback_store()
46+
const feedback_store = useFeedbackStore()
4747
4848
function reload() {
4949
window.location.reload()

components/FeedBack/Snackers.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
</template>
6262

6363
<script setup>
64-
const feedback_store = use_feedback_store()
64+
const feedback_store = useFeedbackStore()
6565
const show = true
6666
6767
function calc_margin(index) {

components/Launcher.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<script setup>
2222
import Status from "@ogw_f/utils/status.js"
2323
24-
const infra_store = use_infra_store()
24+
const infra_store = useInfraStore()
2525
const site_key = useRuntimeConfig().public.RECAPTCHA_SITE_KEY
2626
2727
watch(

components/PackagesVersions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
schema: { type: Object, required: true },
2626
})
2727
28-
const geode_store = use_geode_store()
28+
const geode_store = useGeodeStore()
2929
const packages_versions = ref([])
3030
3131
async function get_packages_versions() {

components/Recaptcha.vue

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

1414
<script setup>
1515
import { VueRecaptcha } from "vue-recaptcha"
16-
const infra_store = use_infra_store()
16+
const infra_store = useInfraStore()
1717
1818
const props = defineProps({
1919
site_key: { type: String, required: true },

components/RemoteRenderingView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
viewId: { type: String, default: "-1" },
3131
})
3232
33-
const viewer_store = use_viewer_store()
33+
const viewer_store = useViewerStore()
3434
const viewer = useTemplateRef("viewer")
3535
const { width, height } = useElementSize(viewer)
3636

components/Wrapper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</template>
1818

1919
<script setup>
20-
const infra_store = use_infra_store()
20+
const infra_store = useInfraStore()
2121
2222
const props = defineProps({
2323
versions_schema: { type: Object, required: true },

0 commit comments

Comments
 (0)