Skip to content

Commit ddcab6f

Browse files
c
1 parent 72f0697 commit ddcab6f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/compass-settings/src/components/settings/settings-list.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
import { changeFieldValue } from '../../stores/settings';
2020
import type { RootState } from '../../stores';
2121
import { connect } from 'react-redux';
22-
import { get } from 'lodash';
2322

2423
type KeysMatching<T, V> = keyof {
2524
[P in keyof T as T[P] extends V ? P : never]: P;
@@ -304,7 +303,6 @@ function SettingsInput({
304303

305304
const { name, type, onChange, value, selectableValues } = props;
306305

307-
console.log('will we match, ', type);
308306
if (type === 'boolean') {
309307
input = (
310308
<BooleanSetting
@@ -315,7 +313,6 @@ function SettingsInput({
315313
/>
316314
);
317315
} else if (type === 'string' && selectableValues) {
318-
console.log('yay we matched ', selectableValues);
319316
input = (
320317
<DropdownSetting
321318
name={name}

0 commit comments

Comments
 (0)