NestJS - Guards
Identify the error in this JWT guard implementation:
```typescript
import { Injectable } from '@nestjs/common';
import { AuthGuard } from '@nestjs/passport';
@Injectable()
export class JwtAuthGuard implements AuthGuard('jwt') {}
```
