Skip to content

Commit

Permalink
fix linting last one
Browse files Browse the repository at this point in the history
  • Loading branch information
LarendsD committed Apr 29, 2023
1 parent d3676aa commit 7b6c6d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/snippets/utils/generate-uniq-slug.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { faker } from "@faker-js/faker";
import { Snippets } from "src/entities/snippet.entity";
import { Snippets } from "../../entities/snippet.entity";

export const generateUniqSlug = (snippets: Snippets[]): string => {
const slug = faker.random.alpha({ count: 7, casing: 'mixed' });
Expand Down
1 change: 0 additions & 1 deletion backend/src/users/dto/create-user.dto.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
IsEmail,
IsNotEmpty,
IsString,
Length,
Matches,
Expand Down

0 comments on commit 7b6c6d6

Please sign in to comment.