Skip to content

Commit

Permalink
Resolve merge conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Grayson committed Mar 6, 2024
2 parents a38ff7a + cc367b8 commit 89fc86d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions backend/src/tasks/checkUserExpiration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ export const handler: Handler = async (event) => {
`Password reset for user ${user.id} due to 45 days of inactivity.`
);
} catch (passwordError) {
console.error(
`Error resetting password for user ${user.id}: ${passwordError}`
);
console.error(`Error resetting password.`);
}
}

Expand Down
1 change: 1 addition & 0 deletions backend/src/tasks/dotgov.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export const handler = async (commandOptions: CommandOptions) => {
)) {
// Create a new organization if needed; else, create the same one.
console.log(orgName);
console.log(row);
const organization =
(await Organization.findOne({
name: orgName
Expand Down

0 comments on commit 89fc86d

Please sign in to comment.