Skip to content

Commit e985c9c

Browse files
authored
Fixing Typo isSignedInIn
1 parent 0461849 commit e985c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-react/components/Routes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class Routes extends React.Component<any, any> {
3131

3232
const DefaultLayout = ({ component: Component, ...rest }: { component: any, path: string, exact?: boolean }) => (
3333
<Route {...rest} render={props => (
34-
AuthService.isSignedInIn() ? (
34+
AuthService.isSignedIn() ? (
3535
<div>
3636
<Header {...props} />
3737
<div className="container">

0 commit comments

Comments
 (0)