We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab21edc commit 1b8086bCopy full SHA for 1b8086b
src/repositories/svg.repository.ts
@@ -28,7 +28,7 @@ export class SvgRepository {
28
WHERE u.username = $1
29
GROUP BY u.username
30
`;
31
- const userStatsResult = await this.pool.query(userStatsQuery, [username, dateRange]);
+ const userStatsResult = await this.pool.query(userStatsQuery, [username]);
32
33
if (userStatsResult.rows.length === 0) {
34
throw new NotFoundError(`사용자를 찾을 수 없습니다: ${username}`);
0 commit comments