fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #2066 from alexanderhorner/fix/client-nuxt-key-bug

fix(client-nuxt): fixed an issue where key was stripped from options

authored by

Lubos and committed by
GitHub
76eb0026 bbbc5316

+6 -1
+5
.changeset/famous-ducks-fry.md
··· 1 + --- 2 + "@hey-api/client-nuxt": patch 3 + --- 4 + 5 + fix(client-nuxt): fixed an issue where key was stripped from options
+1 -1
packages/client-nuxt/src/client.ts
··· 31 31 const request: Client['request'] = ({ 32 32 asyncDataOptions, 33 33 composable, 34 - key, 35 34 ...options 36 35 }) => { 36 + const key = options.key; 37 37 const opts = { 38 38 ..._config, 39 39 ...options,