From 62332d02c303d913e9eda26e48ae9d73fbd9818d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 1 Sep 2023 17:23:29 +0000 Subject: [PATCH] chore: format --- app/singleton.server.ts | 2 +- mocks/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/singleton.server.ts b/app/singleton.server.ts index 1e3a7dbf..2f4c8c44 100644 --- a/app/singleton.server.ts +++ b/app/singleton.server.ts @@ -3,7 +3,7 @@ export const singleton = ( name: string, - valueFactory: () => Value + valueFactory: () => Value, ): Value => { const g = global as any; g.__singletons ??= {}; diff --git a/mocks/index.js b/mocks/index.js index dbf2207b..41246682 100644 --- a/mocks/index.js +++ b/mocks/index.js @@ -4,7 +4,7 @@ const { setupServer } = require("msw/node"); // put one-off handlers that don't really need an entire file to themselves here const miscHandlers = [ rest.post(`${process.env.REMIX_DEV_HTTP_ORIGIN}/ping`, (req) => - req.passthrough() + req.passthrough(), ), ];