Skip to content

Commit

Permalink
lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Sep 10, 2023
1 parent 3ab7f8b commit 15989f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/utils/cache.server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import fs from 'fs'
import { remember } from '@epic-web/remember'
import Database from 'better-sqlite3'
import {
cachified as baseCachified,
Expand All @@ -13,7 +14,6 @@ import { LRUCache } from 'lru-cache'
import { z } from 'zod'
import { updatePrimaryCacheValue } from '#app/routes/admin+/cache_.sqlite.tsx'
import { getInstanceInfo, getInstanceInfoSync } from './litefs.server.ts'
import { remember } from '@epic-web/remember'
import { cachifiedTimingReporter, type Timings } from './timing.server.ts'

const CACHE_DATABASE_PATH = process.env.CACHE_DATABASE_PATH
Expand Down
2 changes: 1 addition & 1 deletion app/utils/db.server.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { remember } from '@epic-web/remember'
import { PrismaClient } from '@prisma/client'
import chalk from 'chalk'
import { remember } from '@epic-web/remember'

export const prisma = remember('prisma', () => {
// NOTE: if you change anything in this function you'll need to restart
Expand Down

0 comments on commit 15989f0

Please sign in to comment.