Skip to content

Commit

Permalink
[React] Fix typo (Authorzation -> Authorization) (#122)
Browse files Browse the repository at this point in the history
Fixes typo in the react template.
  • Loading branch information
utkinn authored Mar 27, 2023
1 parent e4156bd commit ce2ae3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/React-CSharp/ClientApp/src/AppRoutes.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
////#if (IndividualLocalAuth)
import ApiAuthorzationRoutes from './components/api-authorization/ApiAuthorizationRoutes';
import ApiAuthorizationRoutes from './components/api-authorization/ApiAuthorizationRoutes';
////#endif
import { Counter } from "./components/Counter";
import { FetchData } from "./components/FetchData";
Expand All @@ -25,7 +25,7 @@ const AppRoutes = [
requireAuth: true,
element: <FetchData />
},
...ApiAuthorzationRoutes
...ApiAuthorizationRoutes
////#endif
];

Expand Down

0 comments on commit ce2ae3c

Please sign in to comment.