Skip to content

Commit

Permalink
easy
Browse files Browse the repository at this point in the history
  • Loading branch information
0-don committed Feb 24, 2024
1 parent 3e4f631 commit 41eda4d
Show file tree
Hide file tree
Showing 6 changed files with 193,655 additions and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class AuthService {
try {
if (
user &&
(await argon2.verify(user.password, data.password, { hashLength: 100 }))
(await argon2.verify(user.password, data.password))
) {
const { password, ...result } = user;
return result as User & {
Expand Down
5 changes: 5 additions & 0 deletions web/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"i18n-ally.localesPaths": ["public/locales"],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
Loading

0 comments on commit 41eda4d

Please sign in to comment.