Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Kingcedru committed Nov 29, 2024
1 parent ae0fa94 commit c8ff01b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions apps/drec-api/src/transformers/trim-string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ import { applyDecorators } from '@nestjs/common';
import { Transform } from 'class-transformer';

export const Trim = (): PropertyDecorator =>
applyDecorators(
Transform(((value) => value.trim()))
)
applyDecorators(Transform((value) => value.trim()));

0 comments on commit c8ff01b

Please sign in to comment.