fix(lint): missing break statements before case
This commit is contained in:
@@ -158,10 +158,12 @@ requestRoutes.get<Record<string, unknown>, RequestResultsResponse>(
|
||||
query = query.andWhere('request.type = :type', {
|
||||
type: MediaType.MOVIE,
|
||||
});
|
||||
break;
|
||||
case 'tv':
|
||||
query = query.andWhere('request.type = :type', {
|
||||
type: MediaType.TV,
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
const [requests, requestCount] = await query
|
||||
|
||||
Reference in New Issue
Block a user