Skip to content

Commit

Permalink
fix: lint with latest rules
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Oct 20, 2024
1 parent 550ccf0 commit c808dd5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions apps/nextjs-app/src/components/banner/Banner.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import { Speaker as SpeakerIcon, Close as XIcon } from '@mui/icons-material';
import type { FC } from 'react';

type Props = {
children?: never;
};

export const Banner: FC<Props> = () => {
export const Banner: FC = () => {
return (
<div className="bg-indigo-600">
<div className="mx-auto max-w-7xl p-3 sm:px-6 lg:px-8">
Expand Down
2 changes: 1 addition & 1 deletion packages/db-main-prisma/src/seeds/PoemSeeds.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import keywordExtractor from 'keyword-extractor';
import { slugify } from 'transliteration';
import type { PrismaDbMain as Prisma } from '../';
import type { PrismaDbMain as Prisma } from '..';
import { AbstractSeed } from '../lib/AbstractSeed';

/* eslint-disable sonarjs/no-duplicate-string */
Expand Down
2 changes: 1 addition & 1 deletion packages/db-main-prisma/src/seeds/UserSeeds.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { PrismaDbMain as Prisma } from '../';
import type { PrismaDbMain as Prisma } from '..';
import { AbstractSeed } from '../lib/AbstractSeed';

const userData: Prisma.UserCreateInput[] = [
Expand Down

0 comments on commit c808dd5

Please sign in to comment.