Skip to content

Commit 86d7d93

Browse files
authored
Merge pull request #202 from atomic-state/features/transform
features(transform):
2 parents e415134 + dd54ec5 commit 86d7d93

File tree

6 files changed

+249
-238
lines changed

6 files changed

+249
-238
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "http-react",
3-
"version": "3.7.3",
3+
"version": "3.7.4",
44
"description": "React hooks for data fetching",
55
"main": "dist/index.js",
66
"scripts": {

src/components/server/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
"use client"
1+
'use client'
22

3-
import { FetchConfigAsync } from "../FetchConfigAsync"
3+
import { FetchConfigAsync } from '../FetchConfigAsync'
44

5-
import { FetchConfig as FConfig, SSRSuspense } from "../index"
5+
import { FetchConfig as FConfig, SSRSuspense } from '../index'
66

7-
const FetchConfig = typeof window === "undefined" ? FetchConfigAsync : FConfig
7+
const FetchConfig = typeof window === 'undefined' ? FetchConfigAsync : FConfig
88

99
export { FetchConfig, SSRSuspense, FConfig as FetchConfigSync }

0 commit comments

Comments
 (0)