Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update docs urls #233

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ yarn add @basis-theory/basis-theory-react

## Documentation

For a complete list of endpoints and examples, please refer to our [React docs](https://docs.basistheory.com/elements#react-package)
For a complete list of endpoints and examples, please refer to our [React docs](https://developers.basistheory.com/docs/sdks/web/react/)

## Usage

Expand Down Expand Up @@ -79,7 +79,7 @@ const MyComponent = () => {

### Elements

[Elements](https://docs.basistheory.com/elements) capabilities are available when passing `elements: true` in initialization options.
[Elements](https://developers.basistheory.com/docs/sdks/web/react/#initialization) capabilities are available when passing `elements: true` in initialization options.

```jsx
import {
Expand Down
2 changes: 1 addition & 1 deletion src/core/BasisTheoryReact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class BasisTheoryReact
private elementMap: { [id: string]: BaseElement<unknown, unknown> } = {};

/**
* @deprecated since v1.5.0 in favor of using {@link https://docs.basistheory.com/elements#basistheoryreact-using-refs refs}
* @deprecated since v1.5.0 in favor of using {@link https://developers.basistheory.com/docs/sdks/web/react/#using-refs refs}
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
public getElement<Element extends BaseElement<any, any>>(
Expand Down
Loading