Remove logs

This commit is contained in:
Nate Kelley 2025-08-02 18:37:47 -06:00
parent 90f5e3a05e
commit f38c61e70c
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
3 changed files with 1 additions and 9 deletions

View File

@ -194,7 +194,7 @@ export const NodeTypeLabels = {
keywords: []
},
equation: {
label: 'Mark as equation',
label: 'Equation',
keyboard: undefined,
keywords: []
},

View File

@ -99,8 +99,6 @@ export function FontColorToolbarButton({
}
}, [color, selectionDefined]);
console.log(customColors, organizationPalettes);
return (
<DropdownMenu
open={open}

View File

@ -158,11 +158,6 @@ const LinkEditPopoverContent = ({
const inputClassName = linkInputVariants();
const realTimeUpdate = (e: React.ChangeEvent<HTMLInputElement>) => {
console.log(e.target.value);
textInputProps.onChange(e);
};
return (
<div className="flex w-[330px] flex-col" {...inputProps}>
<div className="flex items-center">
@ -187,7 +182,6 @@ const LinkEditPopoverContent = ({
placeholder="Text to display"
data-plate-focus
{...textInputProps}
onChange={realTimeUpdate}
/>
</div>
</div>