-
+
{data.userName}
{' '}
{generateLogMessage(data)}
diff --git a/components/form/form-input.tsx b/components/form/form-input.tsx
index 3210365..07f4777 100644
--- a/components/form/form-input.tsx
+++ b/components/form/form-input.tsx
@@ -45,7 +45,7 @@ export const FormInput = forwardRef(
{label ? (
diff --git a/components/form/form-picker.tsx b/components/form/form-picker.tsx
index 1130977..8215085 100644
--- a/components/form/form-picker.tsx
+++ b/components/form/form-picker.tsx
@@ -74,7 +74,7 @@ export const FormPicker = ({ id, errors }: FormPickerProps) => {
id={id}
name={id}
className='hidden'
- checked={selectedImageId === image.id}
+ defaultChecked={selectedImageId === image.id}
disabled={pending}
value={`${image.id}|${image.urls.thumb}|${image.urls.full}|${image.links.html}|${image.user.name}|${image.links.download_location}`}
/>
diff --git a/components/form/form-popover.tsx b/components/form/form-popover.tsx
index 102ba7f..1ccbcca 100644
--- a/components/form/form-popover.tsx
+++ b/components/form/form-popover.tsx
@@ -66,12 +66,12 @@ export const FormPopover = ({
side={side}
sideOffset={sideOffset}
>
-
+
Create board