feat: wait for upload sync (#649)

* feat: add basic progress bar (#605)

* feat: add syncing to share page (#605)

* refactor: use the documentation text comp (#605)

* refactor: move sync logic to new comp (#605)

* refactor: optimize sync check (#605)

* chore: linting (#605)

---------

Co-authored-by: Levente Kiss <levente.kiss@solarpunk.bzz>
This commit is contained in:
Levente Kiss
2024-01-08 22:56:31 +01:00
committed by GitHub
parent 5871223203
commit 79bb315401
4 changed files with 121 additions and 1 deletions
+10 -1
View File
@@ -204,7 +204,16 @@ export function Upload(): ReactElement {
</Box>
</>
)}
{step === 2 && stamp && <StampPreview stamp={stamp} />}
{step === 2 && stamp && (
<>
<StampPreview stamp={stamp} />
<Box mb={4}>
<DocumentationText>
Please do not close the application until your file is uploaded to your local node!
</DocumentationText>
</Box>
</>
)}
<UploadActionBar
step={step}
onCancel={reset}