Skip to content

Commit

Permalink
fix(idea/frontend): idl file input (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitayutanov authored Jul 8, 2024
1 parent b9e7de0 commit fe1bbe2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const UploadMetadata = ({ value, metadata, idl, isDisabled, isLoading, onChange
direction="y"
className={cx(formStyles.field, formStyles.gap16)}
onChange={onChange}
accept={[FileTypes.Text, FileTypes.Idl]}
accept={FileTypes.Text}
/>
)}

Expand Down
1 change: 0 additions & 1 deletion idea/frontend/src/shared/config/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ enum FileTypes {
Wasm = 'application/wasm',
Json = 'application/json',
Text = 'text/plain',
Idl = '.idl',
}

enum AnimationTimeout {
Expand Down

0 comments on commit fe1bbe2

Please sign in to comment.