We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c8b62 commit 2e5d2a9Copy full SHA for 2e5d2a9
docs/advanced/19_explicit_progress/index.mdx
@@ -38,13 +38,13 @@ def main():
38
set_progress(25)
39
40
# ... Second heavy task
41
- set_progress(25)
+ set_progress(50)
42
43
# ... Third heavy task
44
+ set_progress(75)
45
46
# ... Fourth heavy task
47
+ set_progress(99)
48
49
```
50
@@ -60,16 +60,16 @@ export async function main() {
60
setProgress(25)
61
62
// ... Second heavy task
63
- setProgress(25)
+ setProgress(50)
64
65
// ... Third heavy task
66
+ setProgress(75)
67
68
// ... Fourth heavy task
69
+ setProgress(99)
70
// ..
71
}
72
73
74
</TabItem>
75
-</Tabs>
+</Tabs>
0 commit comments