Skip to content

Commit dd0b169

Browse files
authored
fix typos
1 parent 4447db6 commit dd0b169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/content/docs/guides/authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ head:
88

99
import CodeBlock from '../../../components/code.astro';
1010

11-
Most of the applications we had the chance to work on required some sort of authentication, and having a bad approach to do it can lead to a lot of problems. The starter kit comes with the basics and mostly what you need to start with authentication in your application.
11+
Most of the applications we had the chance to work on required some sort of authentication and having a bad approach to do it can lead to a lot of problems. The starter kit comes with the basics and mostly what you need to start with authentication in your application.
1212

1313
As Authentication is global to the application, we end up using Zustand to manage the authentication state of the application.
1414

1515
[Zustand](https://github.com/pmndrs/zustand) is a state management library that is very simple to use and highly performant. It is also easy to integrate with React and works better than a simple context API, as it offers additional features such as selectors to prevent unnecessary re-renders.
1616

17-
Zustand works very well with TypeScript and can be easily used outside React Three, which means more flexibility.
17+
Zustand works very well with TypeScript and can be easily used outside the React tree, which means more flexibility.
1818

1919
## Authentication Store
2020

0 commit comments

Comments
 (0)