Bump the mui group with 6 updates (#821) #513
Annotations
7 warnings
|
Update Release
"pull_request_target.edited" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
Update Release
"pull_request_target.synchronize" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
Update Release
"pull_request_target.reopened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
Update Release
"pull_request_target.opened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
src/components/message/MessageForm.tsx#L118
Compilation Skipped: Use of incompatible library
This API returns functions which cannot be memoized without leading to stale UI. To prevent this, by default React Compiler will skip memoizing this component/hook. However, you may see issues if values from this API are passed to other components/hooks that are memoized.
/home/runner/work/ticker-admin/ticker-admin/src/components/message/MessageForm.tsx:118:19
116 | }, [isSubmitSuccessful, reset])
117 |
> 118 | const message = watch('message')
| ^^^^^ React Hook Form's `useForm()` API returns a `watch()` function which cannot be memoized safely.
119 | const disabled = !ticker.active || isSubmitting
120 | const color = disabled ? palette.action.disabled : palette.primary['main']
121 | const placeholder = ticker.active ? t('message.writeActive') : t('writeInactive') (react-hooks/incompatible-library)
|
|
src/components/user/UserChangePasswordForm.tsx#L60
Compilation Skipped: Use of incompatible library
This API returns functions which cannot be memoized without leading to stale UI. To prevent this, by default React Compiler will skip memoizing this component/hook. However, you may see issues if values from this API are passed to other components/hooks that are memoized.
/home/runner/work/ticker-admin/ticker-admin/src/components/user/UserChangePasswordForm.tsx:60:23
58 | }
59 |
> 60 | const newPassword = watch('newPassword', '')
| ^^^^^ React Hook Form's `useForm()` API returns a `watch()` function which cannot be memoized safely.
61 |
62 | return (
63 | <form id={id} onSubmit={handleSubmit(onSubmit)}> (react-hooks/incompatible-library)
|
|
src/components/user/UserForm.tsx#L46
Compilation Skipped: Use of incompatible library
This API returns functions which cannot be memoized without leading to stale UI. To prevent this, by default React Compiler will skip memoizing this component/hook. However, you may see issues if values from this API are passed to other components/hooks that are memoized.
/home/runner/work/ticker-admin/ticker-admin/src/components/user/UserForm.tsx:46:31
44 | })
45 | const queryClient = useQueryClient()
> 46 | const isSuperAdminChecked = watch('isSuperAdmin')
| ^^^^^ React Hook Form's `useForm()` API returns a `watch()` function which cannot be memoized safely.
47 | const password = watch('password', '')
48 |
49 | const onSubmit: SubmitHandler<FormValues> = data => { (react-hooks/incompatible-library)
|