- the great reformat

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-02-06 18:20:58 -05:00
parent 30c530bcc4
commit e83badb454
912 changed files with 108516 additions and 107493 deletions

View File

@@ -1,21 +1,21 @@
import { all, call } from "redux-saga/effects";
import {all, call} from "redux-saga/effects";
import { userSagas } from "./user/user.sagas";
import { messagingSagas } from "./messaging/messaging.sagas";
import { emailSagas } from "./email/email.sagas";
import { modalsSagas } from "./modals/modals.sagas";
import { applicationSagas } from "./application/application.sagas";
import { techSagas } from "./tech/tech.sagas";
import { mediaSagas } from "./media/media.sagas";
import {userSagas} from "./user/user.sagas";
import {messagingSagas} from "./messaging/messaging.sagas";
import {emailSagas} from "./email/email.sagas";
import {modalsSagas} from "./modals/modals.sagas";
import {applicationSagas} from "./application/application.sagas";
import {techSagas} from "./tech/tech.sagas";
import {mediaSagas} from "./media/media.sagas";
export default function* rootSaga() {
yield all([
call(userSagas),
call(messagingSagas),
call(emailSagas),
call(modalsSagas),
call(applicationSagas),
call(techSagas),
call(mediaSagas),
]);
yield all([
call(userSagas),
call(messagingSagas),
call(emailSagas),
call(modalsSagas),
call(applicationSagas),
call(techSagas),
call(mediaSagas),
]);
}