Skip to content

Commit

Permalink
fix: select
Browse files Browse the repository at this point in the history
  • Loading branch information
MICHEL NOGALES authored and MICHEL NOGALES committed Sep 13, 2023
1 parent fe8acf1 commit 43c4384
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ const SingleValue: React.FC<SingleValueProps> = ({ selectProps, data }) => {
};

export interface SelectProps {
isSearchable: boolean;
isClearable: boolean;
isDisabled: boolean;
isLoading: boolean;
isLogin: boolean;
isSearchable?: boolean;
isClearable?: boolean;
isDisabled?: boolean;
isLoading?: boolean;
isLogin?: boolean;
name?: string;
onChange?: any;
onBlur?: any;
Expand Down
1 change: 1 addition & 0 deletions src/components/UploadFile/FileService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ const httpTransfer = axios.create({
timeout: 0,
xsrfCookieName: 'XSRF-TOKEN',
xsrfHeaderName: 'X-XSRF-TOKEN',
'Content-Type': 'application/json'
// 'Content-Type': 'application/json',
// 'X-Requested-With': 'XMLHttpRequest',
});
Expand Down

0 comments on commit 43c4384

Please sign in to comment.