Skip to content

Commit

Permalink
fix: useLocalStorage 절대경로 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
d0422 committed Jun 15, 2024
1 parent 34dac06 commit 551b252
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/useLocalStorage/useLocalStorage.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 551b252

Please sign in to comment.