Skip to content

Commit

Permalink
fix: add missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
farnabaz committed Dec 15, 2022
1 parent 4ec1621 commit 5285db0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/composables/navigation.ts
@@ -1,5 +1,5 @@
import { hash } from 'ohash'
import { useRuntimeConfig } from '#app'
import { useRuntimeConfig, useCookie } from '#app'
import type { NavItem, QueryBuilder, QueryBuilderParams } from '../types'
import { encodeQueryParams } from '../utils/query'
import { jsonStringify } from '../utils/json'
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/composables/query.ts
@@ -1,6 +1,6 @@
import { joinURL, withLeadingSlash, withoutTrailingSlash } from 'ufo'
import { hash } from 'ohash'
import { useRuntimeConfig } from '#app'
import { useRuntimeConfig, useCookie } from '#app'
import { createQuery } from '../query/query'
import type { ParsedContent, QueryBuilder, QueryBuilderParams } from '../types'
import { encodeQueryParams } from '../utils/query'
Expand Down

0 comments on commit 5285db0

Please sign in to comment.