Skip to content

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 0f494d0 according to the output
from Prettier.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Jun 8, 2024
1 parent 0f494d0 commit b06e11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main/src/AuthenticationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class AuthenticationService {
*/
authenticateUser(username: string, password: string): number {
const user = userCredentials.find(
(user) => user.username === username && user.password === password
(user) => user.username === username && user.password === password,
);

return user ? user.customerId : -1;
Expand Down

0 comments on commit b06e11f

Please sign in to comment.