Skip to content

Commit b813c22

Browse files
committed
began styling travel buttons
1 parent 1ea5912 commit b813c22

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

src/app/components/StateRoute/WebMetrics/WebMetrics.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { useDispatch } from 'react-redux';
1010

1111
const radialGraph = (props) => {
1212
const dispatch = useDispatch();
13-
console.log('props', props);
1413
const state = {
1514
series: [props.series], // series appears to be the scale at which data is displayed based on the type of webMetrics measured.
1615
options: {

src/app/containers/MainContainer.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ function MainContainer(): JSX.Element {
121121
}
122122
};
123123

124-
// useEffect(() => {
125124
async function awaitPortConnection() {
126125
if (port) return; // only open port once so if it exists, do not run useEffect again
127126

@@ -148,10 +147,7 @@ function MainContainer(): JSX.Element {
148147
dispatch(endConnect());
149148
}
150149
awaitPortConnection();
151-
// });
152150

153-
// Error Page launch IF(Content script not launched OR RDT not installed OR Target not React app)
154-
// setTimeout(() => {
155151
if (
156152
!tabs[currentTab] ||
157153
//@ts-ignore
@@ -163,8 +159,6 @@ function MainContainer(): JSX.Element {
163159
return <ErrorContainer port={port} />;
164160
}
165161

166-
// }, 5000);
167-
168162
const { axSnapshots, currLocation, viewIndex, sliderIndex, snapshots, hierarchy, webMetrics } =
169163
tabs[currentTab]; // we destructure the currentTab object which is passed in from background.js
170164
//@ts-ignore

src/app/styles/layout/_travelContainer.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
.react-select__control {
1616
background-color: #f3f4f6 !important;
1717
border: none !important;
18-
border-radius: 0.375rem !important;
19-
min-height: 30px !important;
18+
border-radius: 6px !important;
2019
box-shadow: none !important;
2120
}
2221

@@ -25,3 +24,4 @@
2524
font-size: 0.875rem !important;
2625
font-weight: 500 !important;
2726
}
27+

0 commit comments

Comments
 (0)