From e62d4835ce0280ffcf8a3d9d414eb235a0b3537a Mon Sep 17 00:00:00 2001 From: SHUBHANSHU602 Date: Mon, 16 Feb 2026 00:14:57 +0530 Subject: [PATCH] fix(readme): update broken AsyncAPIDocument link in Props section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb8f2bdb1..19f545cdb 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ The list of props for the AsyncAPI React component includes: - **schema: string | AsyncAPIDocument | object | FetchingSchemaInterface** - The `schema` property is required and contains AsyncAPI specification. Use the `string` type, the [`AsyncAPIDocument`](https://github.com/asyncapi/parser-js/blob/master/lib/models/asyncapi.js) type, parsed specification as JS object from [AsyncAPI Parser](https://github.com/asyncapi/parser-js) or the [`FetchingSchemaInterface`](./library/src/types.ts#L393) object to fetch the schema from an external resource. For more information on what it contains and what it should look like, read [AsyncAPI Specification](https://github.com/asyncapi/asyncapi#asyncapi-specification). + The `schema` property is required and contains AsyncAPI specification. Use the `string` type, the [`AsyncAPIDocument`](https://github.com/asyncapi/parser-js/blob/master/packages/parser/src/models/asyncapi.ts) type, parsed specification as JS object from [AsyncAPI Parser](https://github.com/asyncapi/parser-js) or the [`FetchingSchemaInterface`](./library/src/types.ts#L393) object to fetch the schema from an external resource. For more information on what it contains and what it should look like, read [AsyncAPI Specification](https://github.com/asyncapi/asyncapi#asyncapi-specification). - **config?: Partial**