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: [] keywords: []
}, },
equation: { equation: {
label: 'Mark as equation', label: 'Equation',
keyboard: undefined, keyboard: undefined,
keywords: [] keywords: []
}, },

View File

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

View File

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