Skip to content

Commit

Permalink
fix(OUT-1390): cast taskId as uuid in query
Browse files Browse the repository at this point in the history
  • Loading branch information
rrojan committed Feb 11, 2025
1 parent 1686a4b commit 8eda63c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/notification/notification.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class NotificationService extends BaseService {
// Hard delete this since we are not marking these as read, but deleting them
await this.db.$executeRaw`
DELETE FROM "InternalUserNotifications"
WHERE "taskId" = ${taskId}
WHERE "taskId" = ${taskId}::uuid
`
}

Expand Down

0 comments on commit 8eda63c

Please sign in to comment.