diff --git a/apps/client/src/layouts/mobile_layout.ts b/apps/client/src/layouts/mobile_layout.ts index fb0d275d2..f21fcd3a3 100644 --- a/apps/client/src/layouts/mobile_layout.ts +++ b/apps/client/src/layouts/mobile_layout.ts @@ -143,7 +143,7 @@ export default class MobileLayout { .css("font-size", "larger") .css("align-items", "center") .child(new ToggleSidebarButtonWidget().contentSized()) - .child(new NoteTitleWidget().contentSized().css("position", "relative").css("padding-left", "0.5em")) + .child(NoteTitleWidget().contentSized().css("position", "relative").css("padding-left", "0.5em")) .child(new MobileDetailMenuWidget(true).contentSized()) ) .child(new SharedInfoWidget()) diff --git a/apps/client/src/widgets/react/FormTextArea.tsx b/apps/client/src/widgets/react/FormTextArea.tsx index 354a02b4e..c3d58c45d 100644 --- a/apps/client/src/widgets/react/FormTextArea.tsx +++ b/apps/client/src/widgets/react/FormTextArea.tsx @@ -5,15 +5,13 @@ interface FormTextAreaProps extends Omit } -export default function FormTextArea({ inputRef, id, onBlur, onChange, rows, currentValue, className, ...restProps }: FormTextAreaProps) { +export default function FormTextArea({ inputRef, id, onBlur, onChange, currentValue, className, ...restProps }: FormTextAreaProps) { return (