Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyan-dfinity committed Sep 13, 2024
1 parent 5817b04 commit 04084cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/assets/src/canisters/assets_idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const idlFactory = ({ IDL }) => {
const ClearArguments = IDL.Record({});
const BatchId = IDL.Nat;
const Key = IDL.Text;
const HeaderField = IDL.Tuple(IDL.Text, IDL.Text);
const CreateAssetArguments = IDL.Record({
key: Key,
content_type: IDL.Text,
Expand All @@ -26,7 +27,6 @@ export const idlFactory = ({ IDL }) => {
SetAssetContent: SetAssetContentArguments,
Clear: ClearArguments,
});
const HeaderField = IDL.Tuple(IDL.Text, IDL.Text);
const HttpRequest = IDL.Record({
url: IDL.Text,
method: IDL.Text,
Expand Down

0 comments on commit 04084cd

Please sign in to comment.