Skip to content

Commit 5aec922

Browse files
committed
chore: remove unnecessary console.log
1 parent 0c95432 commit 5aec922

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/client/src/widgets/ribbon/CollectionPropertiesTab.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function CollectionPropertiesTab({ note }: TabContext) {
2828
const defaultViewType = (note?.type === "search" ? "list" : "grid");
2929
const viewTypeWithDefault = (viewType ?? defaultViewType) as ViewTypeOptions;
3030
const properties = bookPropertiesConfig[viewTypeWithDefault].properties;
31-
console.warn('CollectionPropertiesTab:', properties)
31+
3232
return (
3333
<div className="book-properties-widget">
3434
{note && (
@@ -137,7 +137,7 @@ function NumberPropertyView({ note, property }: { note: FNote, property: NumberP
137137

138138
function ComboBoxPropertyView({ note, property }: { note: FNote, property: ComboBoxProperty }) {
139139
const [ value, setValue ] = useNoteLabel(note, property.bindToLabel);
140-
console.warn('ComboBoxPropertyView:', value)
140+
141141
return (
142142
<LabelledEntry label={property.label}>
143143
<FormSelectWithGroups
@@ -150,7 +150,6 @@ function ComboBoxPropertyView({ note, property }: { note: FNote, property: Combo
150150
}
151151

152152
function LabelledEntry({ label, children }: { label: string, children: ComponentChildren }) {
153-
console.warn('LabelledEntry:', label)
154153
return (
155154
<>
156155
<label>

0 commit comments

Comments
 (0)