Skip to content

Commit e20997a

Browse files
committed
chore: update repo url
1 parent 348ad9d commit e20997a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function Widget() {
4646
| **Prop** | **Type** | **Description** | **Required** |
4747
| ----------- | ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ |
4848
| siteKey | `string` | Your sitekey key, get one from [here](https://developers.cloudflare.com/turnstile/get-started/). ||
49-
| options | `object` | Widget render options. More info about this options [below](https://github.com/marsidev/react.turnstile/#render-options). | |
49+
| options | `object` | Widget render options. More info about this options [below](https://github.com/marsidev/react-turnstile/#render-options). | |
5050
| scriptProps | `object` | You can customize the injected `script` tag with this prop. It allows you to add `async`, `defer`, `nonce` attributes to the script tag. You can also control whether the injected script will be added to the document body or head with `appendTo` attribute. | |
5151
| onSuccess | `function` | Callback that is invoked upon success of the challenge. The callback is passed a token that can be validated. | |
5252
| onExpire | `function` | Callback that is invoked when a challenge expires. | |
@@ -271,11 +271,11 @@ export default async function handler(request, response) {
271271
272272
## Contributing
273273
274-
Any contributions are greatly appreciated. If you have a suggestion that would make this project better, please fork the repo and create a Pull Request. You can also [open an issue](https://github.com/marsidev/react.turnstile/issues/new).
274+
Any contributions are greatly appreciated. If you have a suggestion that would make this project better, please fork the repo and create a Pull Request. You can also [open an issue](https://github.com/marsidev/react-turnstile/issues/new).
275275
276276
## 💻 Development
277277
278-
- [Fork](https://github.com/marsidev/react.turnstile/fork) or clone the repo
278+
- [Fork](https://github.com/marsidev/react-turnstile/fork) or clone the repo
279279
- Install dependencies with `pnpm install`
280280
- You can use `pnpm dev` to stub the library, `pnpm build` to build the library, `pnpm example:dev` to start the demo page in dev mode.
281281

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"license": "MIT",
88
"type": "module",
99
"private": false,
10-
"homepage": "https://github.com/marsidev/react.turnstile",
10+
"homepage": "https://github.com/marsidev/react-turnstile",
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/marsidev/react.turnstile.git"
13+
"url": "git+https://github.com/marsidev/react-turnstile.git"
1414
},
15-
"bugs": "https://github.com/marsidev/react.turnstile/issues",
15+
"bugs": "https://github.com/marsidev/react-turnstile/issues",
1616
"exports": {
1717
".": {
1818
"types": "./dist/index.d.ts",

packages/example/src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ const Footer = () => {
55
<footer className='text-white flex items-center flex-col'>
66
<div>
77
<code>react-turnstile</code> source code{' '}
8-
<Link href='https://github.com/marsidev/react.turnstile' label='here' />
8+
<Link href='https://github.com/marsidev/react-turnstile' label='here' />
99
</div>
1010

1111
<div>
1212
Source code of this demo{' '}
1313
<Link
14-
href='https://github.com/marsidev/react.turnstile/tree/main/packages/example'
14+
href='https://github.com/marsidev/react-turnstile/tree/main/packages/example'
1515
label='here'
1616
/>
1717
</div>

0 commit comments

Comments
 (0)