diff --git a/package.json b/package.json index f22519b..1ef6a9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rapiders/react-hooks", - "version": "1.2.7", + "version": "1.2.8", "description": "react hooks for fast development", "main": "dist/esm/index.js", "types": "dist/esm/index.d.ts", diff --git a/src/useLocalStorage/useLocalStorage.ts b/src/useLocalStorage/useLocalStorage.ts index 9088e44..a257b91 100644 --- a/src/useLocalStorage/useLocalStorage.ts +++ b/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 { serializer?: (value: T) => string;