This commit is contained in:
Carl Downing
2023-07-30 14:47:11 -07:00
parent 54b57b485f
commit 381e55c92e
7 changed files with 7 additions and 7 deletions

View File

@@ -126,7 +126,7 @@ export default class CreateManyBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);

View File

@@ -145,7 +145,7 @@ export default class DeleteManyBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);

View File

@@ -116,7 +116,7 @@ export default class DeleteOneBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);

View File

@@ -180,7 +180,7 @@ export default class FindManyBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);

View File

@@ -153,7 +153,7 @@ export default class FindOneBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)

View File

@@ -169,7 +169,7 @@ export default class UpdateManyBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);

View File

@@ -140,7 +140,7 @@ export default class UpdateOneBaseModel<
executePort: successPort,
};
} catch (err: any) {
options.log('Error runnning component');
options.log('Error running component');
options.log(
err.message ? err.message : JSON.stringify(err, null, 2)
);