Skip to content

Commit 0f6004f

Browse files
chore: fix markdown syntax issues ('<' and '{' now require escaping)
1 parent 2dd6935 commit 0f6004f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,8 +802,8 @@ The following subcomponents have been added / reworked:
802802

803803
* fix: update image sizing according to figma design
804804

805-
Co-authored-by: vlasovmichael <mykhailo.vlasov@raccoongang.com>
806-
Co-authored-by: vzadorozhnii <vladyslav.zadorozhnii@raccoongang.com>
805+
Co-authored-by: vlasovmichael \<mykhailo.vlasov@raccoongang.com\>
806+
Co-authored-by: vzadorozhnii \<vladyslav.zadorozhnii@raccoongang.com\>
807807

808808

809809

src/Dropzone/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ The `Dropzone` allows users to upload files via drag and drop, or by clicking th
1515

1616
You will also need to provide upload logic yourself via `onProcessUpload` prop which accepts function that should take care of uploading the file to the backend (i.e. send HTTP request).
1717
This function accepts an object with following content as its only argument:
18-
- {object} fileData - Metadata about the uploaded file.
19-
- {object} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
20-
- {function} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.
18+
- \{object\} fileData - Metadata about the uploaded file.
19+
- \{object\} requestConfig - Config to pass to `axios` call (this is required to display progress bar and hande cancel action).
20+
- \{function\} handleError - Function to communicate to `Dropzone` that file upload resulted in failure, expects `Error` object as its only argument.
2121

2222
Each example below implements such a function.
2323

0 commit comments

Comments
 (0)