Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iibarbari committed Nov 19, 2024
1 parent 445ae52 commit b900bfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function App() {
<Route component={PasswordRecovery} path="/forgot-password" />
<Route component={PasswordReset} path="/password-reset" />
<Route component={SignIn} path="/sign-in" />

<Route>
<Error />
</Route>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/PasswordReset/FormTitle/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type AuthenticationHeaderProps = Overwrite<Omit<PropsWithoutRef<JSX.Intri
showGoBack?: boolean;
summary: ReactNode;
title: ReactNode;
}>
}>;

export default function FormTitle(
{
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/PasswordReset/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ type State = {
isAlreadySignedIn: boolean;
isPasswordUpdated: boolean;
isTokenValid: boolean;
}
};

type Form = {
passwordResetToken: string;
userPassword: string;
userPassword2: string;
}
};

export default function PasswordReset() {
const { showBoundary } = useErrorBoundary();
Expand Down

0 comments on commit b900bfe

Please sign in to comment.