Skip to content

Commit

Permalink
Fix for sonarcube issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelNordberg committed Dec 19, 2024
1 parent 42c577f commit 7e52b9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function Presentation({ selectedTabId, isMobile }: propsType) {
);

if (initialRun && !hasSelectedValues) {
tableData.fetchTableData(tableId ? tableId : 'tab1292', i18n, isMobile);
tableData.fetchTableData(tableId, i18n, isMobile);
setIsMissingMandatoryVariables(false);
} else {
if (
Expand All @@ -123,7 +123,7 @@ export function Presentation({ selectedTabId, isMobile }: propsType) {
!initialRun
) {
setIsFadingTable(true);
tableData.fetchTableData(tableId ? tableId : 'tab638', i18n, isMobile);
tableData.fetchTableData(tableId, i18n, isMobile);
setIsMissingMandatoryVariables(false);
}
if (!hasSelectedMandatoryVariables && !initialRun) {
Expand Down

0 comments on commit 7e52b9f

Please sign in to comment.