Skip to content

Commit 3aec631

Browse files
committed
fix: sidebar and run format
1 parent 895bdf3 commit 3aec631

File tree

3 files changed

+15
-19
lines changed

3 files changed

+15
-19
lines changed

.vitepress/sidebar.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -188,25 +188,21 @@ export function getSidebar() {
188188
text: '🚀 Getting Started',
189189
link: '/guides/use-iapp/getting-started',
190190
},
191-
{
192-
text: 'Find iApps to Use',
193-
link: '/use-iapp/guides/find-iapps',
194-
},
195191
{
196192
text: 'Different Ways to Execute an iApp',
197-
link: '/use-iapp/guides/different-ways-to-execute',
193+
link: '/guides/use-iapp/different-ways-to-execute',
198194
},
199195
{
200196
text: 'Use iApp with Protected Data',
201-
link: '/use-iapp/guides/use-iapp-with-protected-data',
197+
link: '/guides/use-iapp/use-iapp-with-protected-data',
202198
},
203199
{
204200
text: 'Add Inputs to the Execution',
205-
link: '/use-iapp/guides/add-inputs-to-execution',
201+
link: '/guides/use-iapp/add-inputs-to-execution',
206202
},
207203
{
208204
text: 'How to Pay the Executions',
209-
link: '/use-iapp/guides/how-to-pay-executions',
205+
link: '/guides/use-iapp/how-to-pay-executions',
210206
},
211207
{
212208
text: '💰 How to Pay',

src/guides/use-iapp/getting-started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,26 +67,26 @@ orders:
6767
When you execute an iApp, the system matches your request with available orders
6868
from all three categories. For a deeper understanding of how orders work and how
6969
to manage them, see the
70-
[Build & Deploy guide](/build-iapp/guides/build-&-deploy) in the
71-
Build iApp section.
70+
[Build & Deploy guide](/build-iapp/guides/build-&-deploy) in the Build iApp
71+
section.
7272

7373
## Detailed Guides
7474

7575
For step-by-step instructions, check out these guides:
7676

77-
- **[Different Ways to Execute](./different-ways-to-execute.md)** - iExec
78-
cli, lib, and other execution methods
77+
- **[Different Ways to Execute](./different-ways-to-execute.md)** - iExec cli,
78+
lib, and other execution methods
7979
- **[Use iApps with Protected Data](./use-iapp-with-protected-data.md)** -
8080
Working with sensitive data securely
81-
- **[Add Inputs to Execution](./add-inputs-to-execution.md)** - How to
82-
provide data and parameters to iApps
83-
- **[How to Pay for Executions](./how-to-pay-executions.md)** -
84-
Understanding costs and payment options
81+
- **[Add Inputs to Execution](./add-inputs-to-execution.md)** - How to provide
82+
data and parameters to iApps
83+
- **[How to Pay for Executions](./how-to-pay-executions.md)** - Understanding
84+
costs and payment options
8585

8686
## Quick Start
8787

88-
Ready to jump in? Follow the execution guides for detailed
89-
instructions on how to use iApps.
88+
Ready to jump in? Follow the execution guides for detailed instructions on how
89+
to use iApps.
9090

9191
<script setup>
9292
import ImageViewer from '@/components/ImageViewer.vue';

src/guides/use-iapp/use-iapp-with-protected-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ import { IExecDataProtectorCore, getWeb3Provider } from '@iexec/dataprotector';
227227

228228
const web3Provider = getWeb3Provider('PRIVATE_KEY');
229229
const dataProtectorCore = new IExecDataProtectorCore(web3Provider);
230-
const taskId = '0x7ac398...'
230+
const taskId = '0x7ac398...';
231231

232232
// ---cut---
233233
// Retrieve the result

0 commit comments

Comments
 (0)