refine
refine copied to clipboard
fix(docs): correct syntax error in authentication tutorial
PR Checklist
Please check if your PR fulfills the following requirements:
- [x] The commit message follows our guidelines: https://refine.dev/docs/guides-concepts/contributing/#commit-convention
Bugs / Features
- [x] Related issue(s) linked
- [ ] Tests for the changes have been added
- [x] Docs have been added / updated
- [x] Changesets have been added https://refine.dev/docs/guides-concepts/contributing/#creating-a-changeset
What is the current behavior?
The authentication tutorial example in the documentation contains smart quotes (“ and ”) instead of standard ASCII quotes ("), which causes a TypeScript syntax error in code editors and sandpack previews.
What is the new behavior?
Replaced the smart quotes with standard double quotes to ensure the code compiles correctly and behaves as expected.
- name: “Error”,
+ name: "Error",
Fixes #6814