Skip to content

Commit 7843639

Browse files
committed
docs: update comments for clarity in various guides
- Changed comments from "Get current chain and compute explorer info" to "Get current chain info" in multiple documentation files for improved clarity and consistency.
1 parent 6e0f3f1 commit 7843639

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/get-started/tooling-and-explorers/iexec-explorer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ import CardGrid from '@/components/CardGrid.vue';
209209
import useUserStore from '@/stores/useUser.store';
210210
import {getChainById} from '@/utils/chain.utils';
211211

212-
// Get current chain and compute explorer info
212+
- // Get current chain info
213213
const userStore = useUserStore();
214214
const selectedChain = computed(() => userStore.getCurrentChainId());
215215

src/guides/build-iapp/advanced/create-your-first-sgx-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ import { computed } from 'vue';
278278
import useUserStore from '@/stores/useUser.store';
279279
import {getChainById} from '@/utils/chain.utils';
280280

281-
// Get current chain and compute explorer info
281+
- // Get current chain info
282282
const userStore = useUserStore();
283283
const selectedChain = computed(() => userStore.getCurrentChainId());
284284

src/guides/build-iapp/advanced/end-to-end-encryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ import { computed } from 'vue';
148148
import useUserStore from '@/stores/useUser.store';
149149
import {getChainById} from '@/utils/chain.utils';
150150
151-
// Get current chain and compute explorer info
151+
- // Get current chain info
152152
const userStore = useUserStore();
153153
const selectedChain = computed(() => userStore.getCurrentChainId());
154154

src/guides/build-iapp/advanced/quick-start-for-developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ import { computed } from 'vue';
355355
import useUserStore from '@/stores/useUser.store';
356356
import {getChainById} from '@/utils/chain.utils';
357357

358-
// Get current chain and compute explorer info
358+
- // Get current chain info
359359
const userStore = useUserStore();
360360
const selectedChain = computed(() => userStore.getCurrentChainId());
361361

src/guides/build-iapp/advanced/your-first-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ import { computed } from 'vue';
420420
import useUserStore from '@/stores/useUser.store';
421421
import {getChainById} from '@/utils/chain.utils';
422422

423-
// Get current chain and compute explorer info
423+
- // Get current chain info
424424
const userStore = useUserStore();
425425
const selectedChain = computed(() => userStore.getCurrentChainId());
426426

src/guides/build-iapp/manage-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ import { computed } from 'vue';
306306
import useUserStore from '@/stores/useUser.store';
307307
import {getChainById} from '@/utils/chain.utils';
308308

309-
// Get current chain and compute explorer info
309+
- // Get current chain info
310310
const userStore = useUserStore();
311311
const selectedChain = computed(() => userStore.getCurrentChainId());
312312

src/guides/manage-data/manage-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ import {getChainById} from '@/utils/chain.utils';
215215
import RequiredBadge from '@/components/RequiredBadge.vue'
216216
import OptionalBadge from '@/components/OptionalBadge.vue'
217217

218-
// Get current chain and compute explorer info
218+
- // Get current chain info
219219
const userStore = useUserStore();
220220
const selectedChain = computed(() => userStore.getCurrentChainId());
221221

src/references/dataProtector/dataProtectorCore/grantAccess.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ import {getChainById} from '@/utils/chain.utils';
257257
import RequiredBadge from '@/components/RequiredBadge.vue'
258258
import OptionalBadge from '@/components/OptionalBadge.vue'
259259

260-
// Get current chain and compute explorer info
260+
- // Get current chain info
261261
const userStore = useUserStore();
262262
const selectedChain = computed(() => userStore.getCurrentChainId());
263263

src/references/dataProtector/dataProtectorCore/processProtectedData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ import ChainNotSupportedBadge from '@/components/ChainNotSupportedBadge.vue'
504504
import useUserStore from '@/stores/useUser.store';
505505
import {getChainById} from '@/utils/chain.utils';
506506

507-
// Get current chain and compute explorer info
507+
- // Get current chain info
508508
const userStore = useUserStore();
509509
const selectedChain = computed(() => userStore.getCurrentChainId());
510510

src/references/dataProtector/dataProtectorSharing/consume/consumeProtectedData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ import RequiredBadge from '@/components/RequiredBadge.vue'
339339
import OptionalBadge from '@/components/OptionalBadge.vue'
340340
import ChainNotSupportedBadge from '@/components/ChainNotSupportedBadge.vue'
341341

342-
// Get current chain and compute explorer info
342+
- // Get current chain info
343343
const userStore = useUserStore();
344344
const selectedChain = computed(() => userStore.getCurrentChainId());
345345

0 commit comments

Comments
 (0)