Skip to content

Commit

Permalink
MNES-1071 try to fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
XAlinaGS committed Jul 11, 2024
1 parent 20323a9 commit 37b1497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/[locale]/viewer/_components/SubmodelsOverviewCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ export function SubmodelsOverviewCard(props: SubmodelsOverviewCardProps) {
try {
fetchedSubmodel = await getSubmodelFromSubmodelDescriptor(selectedSubmodel.endpoint);
} catch (e) {
console.error(e);
console.debug(e);
}
}
if (!registryAasData) {
try {
fetchedSubmodel = await submodelClient.getSubmodelById(selectedSubmodel?.id ?? '');
} catch (e) {
console.error(e);
console.debug(e);
}
}
}
Expand Down

0 comments on commit 37b1497

Please sign in to comment.