Skip to content

Commit

Permalink
Fix import statement in FaultsTab component
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-phxm authored and ideen1 committed Feb 13, 2024
1 parent ca04ce6 commit 348fd11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/renderer/code/components/tabs/FaultsTab.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import PISTransformers from "@/components/transformers/PIStransformer";
import PISTransformer from "@/components/transformers/PIStransformer";
import Battery from "@/objects/PIS/PIS.battery";

function FaultsTab(): JSX.Element {
return (
<div>
<PISTransformers root={Battery()} />
<PISTransformer root={Battery()} />
</div>
);
}
Expand Down

0 comments on commit 348fd11

Please sign in to comment.