Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev support/appeals 29184 4958 #19286

Merged
merged 8 commits into from
Sep 12, 2023
2 changes: 1 addition & 1 deletion client/app/components/AmaIssueList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default class AmaIssueList extends React.PureComponent {
{requestIssues.map((issue, i) => {
const error = errorMessages && errorMessages[issue.id];

return <React.Fragment>
return <React.Fragment key={`ama-issue-${i}`}>
{ error &&
<span className="usa-input-error-message" tabIndex={0}>
{error}
Expand Down
1 change: 1 addition & 0 deletions client/app/queue/components/TaskRows.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,7 @@ class TaskRows extends React.PureComponent {
timeline,
taskList,
index,
key: `${timelineEvent?.type}-${index}`
});
}

Expand Down
Loading