Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit af2599e

Browse files
committed
fix(inject-server-css.ts): remove unnecessary return
1 parent 50c27e8 commit af2599e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/_internal/utils/inject-server-css.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ const styleSheets: Record<string, string> = {};
55
export function injectServerCSS(hash: string, sheet: string, context: string) {
66
if (isDevelopment) console.log('💫 ' + context + ' executing ...' + sheet);
77
styleSheets[hash] = sheet;
8-
9-
return sheet;
108
}
119

1210
export function getServerCSS(): string {

0 commit comments

Comments
 (0)