We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34dac06 commit 551b252Copy full SHA for 551b252
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@rapiders/react-hooks",
3
- "version": "1.2.7",
+ "version": "1.2.8",
4
"description": "react hooks for fast development",
5
"main": "dist/esm/index.js",
6
"types": "dist/esm/index.d.ts",
src/useLocalStorage/useLocalStorage.ts
@@ -1,5 +1,5 @@
import { useEffect, useState } from 'react';
-import { isServer } from '@/utils/isServer';
+import { isServer } from '../utils/isServer';
interface UseLocalStorageOptions<T> {
serializer?: (value: T) => string;
0 commit comments