diff --git a/apps/rowboat/app/lib/components/editable-field.tsx b/apps/rowboat/app/lib/components/editable-field.tsx index cb1cb689..34aba0ac 100644 --- a/apps/rowboat/app/lib/components/editable-field.tsx +++ b/apps/rowboat/app/lib/components/editable-field.tsx @@ -3,6 +3,7 @@ import { useEffect, useRef, useState } from "react"; import { useClickAway } from "@/hooks/use-click-away"; import MarkdownContent from "@/app/lib/components/markdown-content"; import clsx from "clsx"; +import { Label } from "@/app/lib/components/label"; interface EditableFieldProps { value: string; @@ -86,7 +87,7 @@ export function EditableField({ return (
{(label || isEditing && multiline) &&
- {label &&
{label}
} + {label &&