Skip to content

Commit

Permalink
chore: nx run-many --target lint --fix --parallel 3 --projects=api-do…
Browse files Browse the repository at this point in the history
…mains-documents,api-domains-driving-license,api-domains-driving-license-book,api-domains-education,api-domains-email-signup,api-domains-endorsement-system,api-domains-energy-funds update dirty files
  • Loading branch information
andes-it committed Jan 22, 2025
1 parent 8e40ece commit 7ce4115
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class QualityPhotoResolver {
resolveDataUri(
@Parent() { hasQualityPhoto }: QualityPhoto,
@CurrentUser() user: User,
): Promise<String | null> {
): Promise<string | null> {
return hasQualityPhoto
? this.drivingLicenseService.getQualityPhotoUri(user.authorization)
: Promise.resolve(null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class QualitySignatureResolver {
resolveDataUri(
@Parent() { hasQualitySignature }: QualitySignature,
@CurrentUser() user: User,
): Promise<String | null> {
): Promise<string | null> {
return hasQualitySignature
? this.drivingLicenseService.getQualitySignatureUri(user.authorization)
: Promise.resolve(null)
Expand Down

0 comments on commit 7ce4115

Please sign in to comment.