Skip to content

Commit 50b6dd7

Browse files
committed
style change
1 parent d0f6bca commit 50b6dd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/app/api/auth.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export class AuthService {
2424
const rawToken = this.getToken();
2525
if (rawToken && this.isValid()) {
2626
try {
27-
const token = this.helperService.decodeToken(rawToken);
28-
return token.user_type === 'Admin';
27+
const token = this.helperService.decodeToken(rawToken);
28+
return token.user_type === 'Admin';
2929
} catch {
3030
return false;
3131
}

0 commit comments

Comments
 (0)