Skip to content

Commit 3b77026

Browse files
Fix lint import order
Co-authored-by: Kent C. Dodds <me+github@kentcdodds.com>
1 parent f05ae37 commit 3b77026

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/utils/simplecast.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type * as H from 'hast'
22
import { toHtml as hastToHtml } from 'hast-util-to-html'
33
import type * as M from 'mdast'
44
import { toHast as mdastToHast } from 'mdast-util-to-hast'
5+
import pLimit from 'p-limit'
56
import parseHtml from 'rehype-parse'
67
import rehype2remark from 'rehype-remark'
78
import rehypeStringify from 'rehype-stringify'
@@ -11,7 +12,6 @@ import { unified } from 'unified'
1112
import type * as U from 'unist'
1213
import { visit } from 'unist-util-visit'
1314
import { z } from 'zod'
14-
import pLimit from 'p-limit'
1515
import {
1616
type CWKEpisode,
1717
type CWKSeason,

prisma/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { PrismaBetterSqlite3 } from '@prisma/adapter-better-sqlite3'
22
import { subMonths } from 'date-fns'
3-
import { PrismaClient } from '#app/utils/prisma-generated.server/client.ts'
43
import { getPasswordHash } from '#app/utils/password.server.ts'
4+
import { PrismaClient } from '#app/utils/prisma-generated.server/client.ts'
55

66
import 'dotenv/config'
77

0 commit comments

Comments
 (0)