Skip to content

Commit

Permalink
fix: Import useQueryState from src, and not from dist
Browse files Browse the repository at this point in the history
  • Loading branch information
andreisocaciu authored and franky47 committed Aug 30, 2023
1 parent 396fd19 commit 1f65c20
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/useQueryState/dynamic/[route]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import React from 'react'
import { queryTypes, useQueryState } from './../../../../../'
import { queryTypes, useQueryState } from './../../../../'

const IntegrationPage = () => {
const [string, setString] = useQueryState('string')
Expand Down
2 changes: 1 addition & 1 deletion src/app/useQueryState/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import React from 'react'
import { queryTypes, useQueryState } from '../../../'
import { queryTypes, useQueryState } from '../../'

const IntegrationPage = () => {
const [string, setString] = useQueryState('string')
Expand Down
2 changes: 1 addition & 1 deletion src/app/useQueryStates/dynamic/[route]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import React from 'react'
import { queryTypes, useQueryStates } from './../../../../../'
import { queryTypes, useQueryStates } from './../../../../'

const IntegrationPage = () => {
const [state, setState] = useQueryStates({
Expand Down
2 changes: 1 addition & 1 deletion src/app/useQueryStates/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client'

import React from 'react'
import { queryTypes, useQueryStates } from '../../../'
import { queryTypes, useQueryStates } from '../../'

const IntegrationPage = () => {
const [state, setState] = useQueryStates({
Expand Down

0 comments on commit 1f65c20

Please sign in to comment.