Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
minnakt committed Nov 1, 2023
1 parent aeef6b4 commit 6ba6cdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ClearSubscriptions: React.FC = () => {
`Successfully cleared ${result.clearMySubscriptions} ${pluralize(
"subscription",
result.clearMySubscriptions
)}!`
)}.`
);
},
onError: (err) => {
Expand Down
4 changes: 3 additions & 1 deletion src/pages/variantHistory/ColumnHeaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ const ColumnHeaders: React.FC<ColumnHeadersProps> = ({
reportError(
new Error("No task names found for build variant")
).warning();
dispatchToast.error(`No tasks found for buildVariant: ${variantName}}`);
dispatchToast.error(
`No tasks found for build variant: ${variantName}}`
);
}
},
});
Expand Down

0 comments on commit 6ba6cdb

Please sign in to comment.