Skip to content

Commit 8c02a1b

Browse files
committed
chore: fix heading order caused accessibility check failures
1 parent 7eea07e commit 8c02a1b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/fragments/lib/storage/android/download.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{/* TODO Rewrite monitor progress of download for iOS/Flutter/Android? */}
44

5-
#### With StoragePath
5+
### With StoragePath
66

77
<BlockSwitcher>
88
<Block name="Java">
@@ -130,7 +130,7 @@ download
130130

131131
To track progress of the download, use the `downloadFile` API that includes a progress listener callback.
132132

133-
#### With StoragePath
133+
### With StoragePath
134134

135135
<BlockSwitcher>
136136
<Block name="Java">
@@ -268,7 +268,7 @@ download
268268

269269
You can also retrieve a URL for the object in storage:
270270

271-
#### With StoragePath
271+
### With StoragePath
272272

273273
<BlockSwitcher>
274274
<Block name="Java">

src/fragments/lib/storage/ios/download.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ There are three ways of getting data that was previously uploaded:
44

55
You can download to in-memory buffer [Data](https://developer.apple.com/documentation/foundation/data) object with `Amplify.Storage.downloadData`:
66

7-
#### With StoragePath
7+
### With StoragePath
88
<BlockSwitcher>
99

1010
<Block name="Async/Await">
@@ -48,7 +48,7 @@ let resultSink = downloadTask
4848

4949
</BlockSwitcher>
5050

51-
#### With Key (Deprecated)
51+
### With Key (Deprecated)
5252
<BlockSwitcher>
5353

5454
<Block name="Async/Await">
@@ -96,7 +96,7 @@ let resultSink = downloadTask
9696

9797
You can download to a file [URL](https://developer.apple.com/documentation/foundation/url) with `Amplify.Storage.downloadFile`:
9898

99-
#### With StoragePath
99+
### With StoragePath
100100
<BlockSwitcher>
101101

102102
<Block name="Async/Await">
@@ -158,7 +158,7 @@ let resultSink = downloadTask
158158

159159
</BlockSwitcher>
160160

161-
#### With Key (Deprecated)
161+
### With Key (Deprecated)
162162
<BlockSwitcher>
163163

164164
<Block name="Async/Await">
@@ -296,4 +296,4 @@ downloadTask.resume()
296296

297297
Download tasks are run using `URLSessionTask` instances internally. You can learn more about them in [Apple's official documentation](https://developer.apple.com/documentation/foundation/urlsessiontask).
298298

299-
</Callout>
299+
</Callout>

0 commit comments

Comments
 (0)