We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7ececd + 42ce24f commit 40dbd20Copy full SHA for 40dbd20
1 file changed
src/components/events/partials/modals/EventDetails.tsx
@@ -81,10 +81,10 @@ const EventDetails = ({
81
82
useEffect(() => {
83
dispatch(removeNotificationWizardForm());
84
- dispatch(fetchMetadata(eventId)).then();
85
- dispatch(fetchSchedulingInfo(eventId)).then();
86
- dispatch(fetchEventStatistics(eventId)).then();
87
- dispatch(fetchAssetUploadOptions()).then();
+ dispatch(fetchMetadata(eventId));
+ dispatch(fetchSchedulingInfo(eventId));
+ dispatch(fetchEventStatistics(eventId));
+ dispatch(fetchAssetUploadOptions());
88
dispatch(fetchEventDetailsTobira(eventId));
89
// eslint-disable-next-line react-hooks/exhaustive-deps
90
}, []);
0 commit comments