chore(deps): bump jsonwebtoken from 9.3.1 to 10.3.0 (#6924)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Katz <dkatz@squareup.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
dependabot[bot]
2026-02-12 17:58:55 +01:00
committed by GitHub
parent af15242b57
commit ac2a569868
5 changed files with 208 additions and 15 deletions
@@ -49,10 +49,7 @@ export function ToolCallArguments({ args }: ToolCallArgumentsProps) {
<div className={`w-full flex items-stretch ${isExpanded ? '' : 'truncate min-w-0'}`}>
{isExpanded ? (
<div>
<MarkdownContent
content={value}
className="font-sans text-sm text-text-muted"
/>
<MarkdownContent content={value} className="font-sans text-sm text-text-muted" />
</div>
) : (
<button
@@ -115,12 +115,9 @@ export const InlineEditText: React.FC<InlineEditTextProps> = ({
}
}, [handleSave, isSaving]);
const handleChange = useCallback(
(e: React.ChangeEvent<HTMLInputElement>) => {
setEditValue(e.target.value);
},
[]
);
const handleChange = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
setEditValue(e.target.value);
}, []);
const handleClick = useCallback(
(e: React.MouseEvent) => {
@@ -523,7 +523,9 @@ export function RecipeFormFields({
{field.state.value && field.state.value.trim() && (
<div
className={`border rounded-lg p-3 bg-background-muted ${
field.state.meta.errors.length > 0 ? 'border-red-500' : 'border-border-default'
field.state.meta.errors.length > 0
? 'border-red-500'
: 'border-border-default'
}`}
>
<pre className="text-xs font-mono text-text-default whitespace-pre-wrap break-words max-h-32 overflow-y-auto">