Skip to content

Commit

Permalink
Coder Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedhamed-ahmed committed Sep 20, 2023
1 parent 93a25e2 commit 14d8d49
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,13 @@ export function InstallElasticAgent() {
const [elasticAgentPlatform, setElasticAgentPlatform] =
useState<ElasticAgentPlatform>('linux-tar');

const datasetEnforcedName = `${
integration === dataset ? dataset : `${integration}.${dataset}`
}`;
const enforcedDatasetName =
integration === dataset ? dataset : `${integration}.${dataset}`;

async function onContinue() {
await singleDatasetLocator!.navigate({
integration,
dataset: datasetEnforcedName,
dataset: enforcedDatasetName,
});
}

Expand Down

0 comments on commit 14d8d49

Please sign in to comment.