Skip to content

Commit 3221d15

Browse files
committed
fixing eslint error
1 parent 989c452 commit 3221d15

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/GlobalStateProvider.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,11 @@ export function GlobalStateProvider({ children, fetch }) { // TODO temp fix for
149149
});
150150
setPowerData({
151151
powerBudget: specification.power?.budget || 1.0,
152-
fpgaScaling: (specification.power?.typical_dynamic_scaling?.fpga_complex || 0) * 100,
153-
pcScaling: (specification.power?.typical_dynamic_scaling?.processing_complex || 0) * 100,
152+
fpgaScaling:
153+
(specification.power?.typical_dynamic_scaling?.fpga_complex || 0) * 100,
154+
pcScaling:
155+
(specification.power?.typical_dynamic_scaling?.processing_complex || 0)
156+
* 100,
154157
});
155158
}
156159
});

0 commit comments

Comments
 (0)