Skip to content

Commit 474f1bd

Browse files
committed
fix: eslint
1 parent 60a69c1 commit 474f1bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libs/actions/EmojiPickerAction.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import type {RefObject} from 'react';
12
import React from 'react';
2-
import type {MutableRefObject} from 'react';
33
import type {TextInput, View} from 'react-native';
44
import type {ValueOf} from 'type-fest';
55
import type {Emoji} from '@assets/emojis/types';
@@ -13,7 +13,7 @@ type AnchorOrigin = {
1313
shiftVertical?: number;
1414
};
1515

16-
type EmojiPopoverAnchor = MutableRefObject<View | HTMLDivElement | TextInput | null>;
16+
type EmojiPopoverAnchor = RefObject<View | HTMLDivElement | TextInput | null>;
1717

1818
type EmojiPickerOnWillShow = (callback?: CloseContextMenuCallback) => void;
1919

0 commit comments

Comments
 (0)