Skip to content

Commit

Permalink
fix: restore missing header component type (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel A. White authored Apr 26, 2023
1 parent f4c88c3 commit 8933c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const idGenerators = {
return join(['http_cookie', props.parentId, props.keyOrName]);
},

httpHeader: (props: Context & { keyOrName: string; componentType: 'parameter' | 'header' }) => {
httpHeader: (props: Context & { keyOrName: string; componentType: 'parameter' | 'header' | 'unknown' }) => {
return join(['http_header', props.parentId, props.componentType, props.keyOrName]);
},

Expand Down

0 comments on commit 8933c45

Please sign in to comment.