Skip to content

Commit

Permalink
chore: PR change request
Browse files Browse the repository at this point in the history
  • Loading branch information
mheggelund committed Nov 8, 2023
1 parent 167ce5b commit fe264ba
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const CaseCard = ({
id: string;
caseType: string;
removeCase: (id: string) => void;
runCase: () => void;
runCase?: () => void;
}) => {
const [selectedModelArea, setModelArea] = useState<optionTypes>();
const [selectedComputeMethod, setComputeMethod] = useState<optionTypes>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const CaseCardButtons = ({
}: {
id: string;
removeCase: (id: string) => void;
runCase: () => void;
runCase?: () => void;
}) => {
return (
<Styled.ButtonDiv>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ export const ComputeVariogram = () => {
setCases(newCaseList);
};

const runComputeVariogram = () => {
console.log('variogram run');
};

return (
<Styled.Case>
<ComputeCaseInfoActions addCase={addCase} caseInfo={variogramCaseInfo} />
Expand All @@ -56,7 +52,6 @@ export const ComputeVariogram = () => {
name={c.name}
caseType={'variogram'}
removeCase={removeCase}
runCase={runComputeVariogram}
/>
))
) : (
Expand Down

0 comments on commit fe264ba

Please sign in to comment.