Reformat all project files to use the prettier config file.

This commit is contained in:
Patrick Fic
2024-03-27 15:35:07 -07:00
parent b161530381
commit e1df64d592
873 changed files with 111387 additions and 125473 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)
]);
}