Fix some typos

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-01-10 13:46:42 +01:00
parent 7304f28acc
commit b2faa1406b
25 changed files with 112 additions and 112 deletions

View File

@ -163,7 +163,7 @@ const buildMessage = (
const avatarSize = 48;
interface INotificaton {
interface INotification {
hidden?: boolean;
notification: NotificationEntity;
onMoveUp?: (notificationId: string) => void;
@ -173,7 +173,7 @@ interface INotificaton {
updateScrollBottom?: (bottom: number) => void;
}
const Notification: React.FC<INotificaton> = (props) => {
const Notification: React.FC<INotification> = (props) => {
const { hidden = false, onMoveUp, onMoveDown } = props;
const dispatch = useAppDispatch();