Skip to content

Commit c28213d

Browse files
cantsdmrshockey
authored andcommitted
fix(docs): correct plugin api typo (swagger-api#4138)
1 parent 286c0e0 commit c28213d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/customization/plugin-api.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ const MyWrapComponentPlugin = function(system) {
334334
if(props.number > 10) {
335335
return <div>
336336
<h3>Warning! Big number ahead.</h3>
337-
<OriginalComponent {...props} />
337+
<Original {...props} />
338338
</div>
339339
} else {
340340
return <Original {...props} />
@@ -353,7 +353,7 @@ const MyWrapComponentPlugin = function(system) {
353353
if(props.number > 10) {
354354
return <div>
355355
<h3>Warning! Big number ahead.</h3>
356-
<OriginalComponent {...props} />
356+
<Original {...props} />
357357
</div>
358358
} else {
359359
return <Original {...props} />

0 commit comments

Comments
 (0)