Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 1, 2023
1 parent 19f6083 commit 62332d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/singleton.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

export const singleton = <Value>(
name: string,
valueFactory: () => Value
valueFactory: () => Value,
): Value => {
const g = global as any;
g.__singletons ??= {};
Expand Down
2 changes: 1 addition & 1 deletion mocks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
),
];

Expand Down

0 comments on commit 62332d0

Please sign in to comment.