We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf4f46a commit 201faafCopy full SHA for 201faaf
1 file changed
src/components/events/partials/modals/EventDetails.tsx
@@ -83,10 +83,10 @@ const EventDetails = ({
83
84
useEffect(() => {
85
dispatch(removeNotificationWizardForm());
86
- dispatch(fetchMetadata(eventId)).then();
87
- dispatch(fetchSchedulingInfo(eventId)).then();
88
- dispatch(fetchEventStatistics(eventId)).then();
89
- dispatch(fetchAssetUploadOptions()).then();
+ dispatch(fetchMetadata(eventId));
+ dispatch(fetchSchedulingInfo(eventId));
+ dispatch(fetchEventStatistics(eventId));
+ dispatch(fetchAssetUploadOptions());
90
91
dispatch(fetchHasActiveTransactions(eventId)).then((fetchTransactionResult) => {
92
const result = unwrapResult(fetchTransactionResult)
0 commit comments