Skip to content

Commit

Permalink
fix(projectHistoryLogs): wrong error message (#5396)
Browse files Browse the repository at this point in the history
### 🗒️ Checklist

1. [x] run linter locally
2. [x] update all related docs (API, README, inline, etc.), if any
3. [x] draft PR with a title `<type>(<scope>)<!>: <title> TASK-1234`
4. [x] tag PR: at least `frontend` or `backend` unless it's global
5. [x] fill in the template below and delete template comments
6. [x] review thyself: read the diff and repro the preview as written
7. [x] open PR & confirm that CI passes
8. [ ] request reviewers, if needed
9. [ ] delete this section before merging

### 📣 Summary
This fixes an incorrect error message


### 📖 Description
Fixed text for error message
  • Loading branch information
pauloamorimbr authored Dec 26, 2024
1 parent e46906d commit 7fc6801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsapp/js/components/activity/activityLogs.query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const getActivityLogs = async ({
return await fetchGet<PaginatedResponse<ActivityLogsItem>>(
`${endpointUrl}?${params}`,
{
errorMessageDisplay: t('There was an error getting one-time add-ons.'),
errorMessageDisplay: t('There was an error getting activity logs.'),
}
);
};
Expand Down

0 comments on commit 7fc6801

Please sign in to comment.