Skip to content

Commit

Permalink
Fixing null marker
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnjr committed Oct 23, 2023
1 parent 5860d15 commit 8eb44ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/certifications/certifications.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class CertificationsResolver {
public async getUser(
@Parent() certification: Certification
): Promise<User | null> {
const { userId } = certification;
// const { userId } = certification;
// return this.$databaseService.user.findUnique({
// where: {
// id: userId
Expand Down

0 comments on commit 8eb44ac

Please sign in to comment.