Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Nov 24, 2024
1 parent c872d8e commit 82f2243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/hoppscotch-common/src/helpers/new-codegen/har.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const buildHarPostParams = (
<Har.Param>{
name: entry.key,
fileName: entry.key, // TODO: Blob doesn't contain file info, anyway to bring file name here ?
contentType: entry.contentType ? entry.contentType : file.type,
contentType: entry.contentType ? entry.contentType : file?.type,
}
)
}
Expand Down
3 changes: 1 addition & 2 deletions packages/hoppscotch-data/src/rest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ export {
HoppRESTRequestResponses,
} from "./v/8"

export { FormDataKeyValue } from "./v/9"
export { HoppRESTReqBody } from "./v/9"
export { FormDataKeyValue, HoppRESTReqBody } from "./v/9"

const versionedObject = z.object({
// v is a stringified number
Expand Down

0 comments on commit 82f2243

Please sign in to comment.