Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ We currently support all our integrations for self-hosting. For each one of them

#### <a name="getting_started">Getting started</a>

1. Get the mono repo from GitHub
1. Get the monorepo from GitHub

```shell
git clone git@github.com:CrowdDotDev/crowd.dev.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const handleDoExport = async () => {

if (error !== 'cancel') {
ToastStore.error(
'An error has occured while trying to export the CSV file. Please try again',
'An error has occurred while trying to export the CSV file. Please try again',
{
title: 'CSV Export failed',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const handleDoExport = async () => {
);
} catch (error) {
ToastStore.error(
'An error has occured while trying to export the CSV file. Please try again',
'An error has occurred while trying to export the CSV file. Please try again',
{
title: 'CSV Export failed',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ async def _process_single_repository(self, repository: Repository):
processing_state = RepositoryState.COMPLETED
except StuckRepoError:
logger.error(
f"Repo {repository.url} is stuck for unkown reason, marking it as stuck until manually resolved!"
f"Repo {repository.url} is stuck for unknown reason, marking it as stuck until manually resolved!"
)
processing_state = RepositoryState.STUCK
except ReOnboardingRequiredError:
Expand Down
2 changes: 1 addition & 1 deletion services/apps/nango_webhook_api/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const errorMiddleware = (): ErrorRequestHandler => {
request.log.error(err, { statusCode: err.status }, 'HTTP error occurred!')
res.status(err.status).json(err.toJSON())
} else {
request.log.error(err, 'Unknown error occured!')
request.log.error(err, 'Unknown error occurred!')
res.status(500).send('Internal Server Error')
}
}
Expand Down
2 changes: 1 addition & 1 deletion services/apps/search_sync_api/src/middleware/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const errorMiddleware = (): ErrorRequestHandler => {
request.log.error(err, { statusCode: err.status }, 'HTTP error occurred!')
res.status(err.status).json(err.toJSON())
} else {
request.log.error(err, 'Unknown error occured!')
request.log.error(err, 'Unknown error occurred!')
res.status(500).send('Internal Server Error')
}
}
Expand Down
2 changes: 1 addition & 1 deletion services/apps/webhook_api/src/middleware/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const errorMiddleware = (): ErrorRequestHandler => {
request.log.error(err, { statusCode: err.status }, 'HTTP error occurred!')
res.status(err.status).json(err.toJSON())
} else {
request.log.error(err, 'Unknown error occured!')
request.log.error(err, 'Unknown error occurred!')
res.status(500).send('Internal Server Error')
}
}
Expand Down