fix share date setting, notification, lint fix

This commit is contained in:
Kendall Garner 2025-09-04 21:15:42 -07:00
parent 53499e2579
commit c21f7df7b2
No known key found for this signature in database
GPG key ID: 9355F387FE765C94
3 changed files with 10 additions and 9 deletions

View file

@ -846,12 +846,12 @@ export const ContextMenuProvider = ({ children }: ContextMenuProviderProps) => {
rightIcon: (
<Group ref={setRatingsRef as any}>
<Rating
value={rating}
onChange={(e) => {
handleUpdateRating(e);
setRating(e);
}}
size="xs"
value={rating}
/>
</Group>
),
@ -891,6 +891,7 @@ export const ContextMenuProvider = ({ children }: ContextMenuProviderProps) => {
handleOpenItemDetails,
handlePlay,
handleUpdateRating,
rating,
]);
const mergedRef = useMergedRef(ref, clickOutsideRef);