diff --git a/src/features/deviceInteraction/DeviceInteraction.jsx b/src/features/deviceInteraction/DeviceInteraction.jsx
index fb5822f..9f10f75 100644
--- a/src/features/deviceInteraction/DeviceInteraction.jsx
+++ b/src/features/deviceInteraction/DeviceInteraction.jsx
@@ -6,7 +6,6 @@ import CurrentTargetTemperature from "./CurrentTargetTemperature/CurrentTargetTe
import TargetTemperatureRange from "./TargetTemperatureRange/TargetTemperatureRange";
import WorkFlow from "../workflowEditor/WorkflowButtons";
-import Container from "react-bootstrap/Container";
import { useSelector } from "react-redux";
function Volcano() {
@@ -22,19 +21,44 @@ function Volcano() {
/* eslint-enable no-unused-vars */
return (
-
+
);
}
diff --git a/src/features/deviceInteraction/WriteTemperature/WriteTemperatureContainer.jsx b/src/features/deviceInteraction/WriteTemperature/WriteTemperatureContainer.jsx
index ec949e0..0243bb1 100644
--- a/src/features/deviceInteraction/WriteTemperature/WriteTemperatureContainer.jsx
+++ b/src/features/deviceInteraction/WriteTemperature/WriteTemperatureContainer.jsx
@@ -216,5 +216,5 @@ export default function WriteTemperatureContainer() {
temperatureButtons.push();
- return {temperatureButtons}
;
+ return <>{temperatureButtons}>;
}
diff --git a/src/features/deviceInteraction/WriteTemperature/styledComponents.jsx b/src/features/deviceInteraction/WriteTemperature/styledComponents.jsx
index 372d62d..e1824e9 100644
--- a/src/features/deviceInteraction/WriteTemperature/styledComponents.jsx
+++ b/src/features/deviceInteraction/WriteTemperature/styledComponents.jsx
@@ -9,6 +9,7 @@ export const InactiveButton = styled.button`
color: ${(props) => props.theme.primaryFontColor};
border-radius: 2rem;
border-color: ${(props) => props.theme.borderColor};
+ white-space: nowrap;
border-style: ${(props) => props.theme.borderStyle};
&:active {
background-color: ${(props) => props.theme.buttonActive.backgroundColor};
@@ -31,9 +32,6 @@ export const PlusMinusButton = styled(InactiveButton)`
export const Div = styled.div`
display: flex;
- width: 48%;
- flex-grow: 1;
- margin: 0px 2.5px 5px;
svg {
height: 2rem;
diff --git a/src/features/shared/OutletRenderer/VolcanoLoader.jsx b/src/features/shared/OutletRenderer/VolcanoLoader.jsx
index ef4b9a8..aaddb0a 100644
--- a/src/features/shared/OutletRenderer/VolcanoLoader.jsx
+++ b/src/features/shared/OutletRenderer/VolcanoLoader.jsx
@@ -211,7 +211,7 @@ export default function VolcanoLoader(props) {
}, [dispatch]);
return (
-
+
{
-
+
);
}
diff --git a/src/features/workflowEditor/WorkflowButtons.jsx b/src/features/workflowEditor/WorkflowButtons.jsx
index 98edd5c..12ae172 100644
--- a/src/features/workflowEditor/WorkflowButtons.jsx
+++ b/src/features/workflowEditor/WorkflowButtons.jsx
@@ -237,7 +237,7 @@ export default function WorkFlow() {
};
return (
-
+ <>
{workflows.map((item, index) => {
const isActive = currentWorkflow?.id === item.id;
const buttonText = isActive ? "Tap to Cancel" : item.name;
@@ -250,6 +250,6 @@ export default function WorkFlow() {
/>
);
})}
-
+ >
);
}