We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8ddbf commit 1dbded9Copy full SHA for 1dbded9
package/src/components/MessageList/UnreadMessagesNotification.tsx
@@ -7,14 +7,14 @@ import { useTranslationContext } from '../../contexts/translationContext/Transla
7
import { Close } from '../../icons';
8
9
export type UnreadMessagesNotificationProps = {
10
- /**
11
- * Callback to handle the press event
12
- */
13
- onPressHandler?: () => Promise<void>;
14
/**
15
* Callback to handle the close event
16
*/
17
onCloseHandler?: () => void;
+ /**
+ * Callback to handle the press event
+ */
+ onPressHandler?: () => Promise<void>;
18
};
19
20
export const UnreadMessagesNotification = (props: UnreadMessagesNotificationProps) => {
0 commit comments