refactor: remove irrelevant type assertion

environments/review-pagination-058b7m/deployments/4920
P. Reis 2024-10-16 20:03:24 -03:00
rodzic daff662210
commit 93a464d210
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -47,7 +47,7 @@ const ZapsModal: React.FC<IZapsModal> = ({ onClose, statusId }) => {
const handleLoadMore = () => {
if (next) {
dispatch(expandZaps(statusId, next!));
dispatch(expandZaps(statusId, next));
}
};