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 Aug 26, 2023
1 parent 31b20bd commit 87b89ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _official-blog-tutorial/app/singleton.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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 _official-jokes/app/utils/singleton.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

export const singleton = <Value>(
name: string,
valueFactory: () => Value
valueFactory: () => Value,
): Value => {
const g = global as any;
g.__singletons ??= {};
Expand Down

0 comments on commit 87b89ea

Please sign in to comment.