Skip to content

Commit

Permalink
ts error jsx element namaspace
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanMarcMilletScality committed Jan 29, 2025
1 parent aba16b4 commit 4448eb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/react/ui-elements/PartnerApp/BucketField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const defaultBucketNameTooltip = (
<Text>Choose an unique name for your bucket</Text>
);
type BucketFieldProps = {
bucketNameTooltip?: JSX.Element;
bucketNameTooltip?: React.JSX.Element;
platform?: string;
};
const BucketField = (fieldOverrides: BucketFieldProps) => {
Expand Down
9 changes: 5 additions & 4 deletions src/react/ui-elements/PartnerApp/ISVList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import SplunkLogo from '../Logo/SplunkLogo';
import ZertoLogo from '../Logo/ZertoLogo';
import VeritasLogo from '../Logo/VeritasLogo';
import CohesityLogo from '../Logo/CohesityLogo';
import React from 'react';

export const ISVList = [
{
Expand All @@ -30,23 +31,23 @@ export const ISVList = [
export type ISVConfigurationProps = {
application: 'Veeam' | 'Commvault';
bucketTag: 'Veeam' | 'Commvault';
logo: JSX.Element;
logo: React.JSX.Element;
fieldOverrides: [
{
name: string;
label?: string;
tooltip?: JSX.Element;
tooltip?: React.JSX.Element;
helpText?: string;
placeholder?: string;
additionnal?: JSX.Element[];
additionnal?: React.JSX.Element[];
},
];
};
type ISVManual = {
name: string;
application?: string;
documentationLink: string;
logo: JSX.Element;
logo: React.JSX.Element;
};

export const ISVManualList: ISVManual[] = [
Expand Down

0 comments on commit 4448eb9

Please sign in to comment.